Opened 9 years ago
Closed 9 years ago
#13707 closed defect (fixed)
dojox.mobile.parser is failing with a dojox.mobile.TextBox on IE8.
Reported by: | Ed Chatelain | Owned by: | bill |
---|---|---|---|
Priority: | high | Milestone: | 1.7 |
Component: | DojoX Mobile | Version: | 1.7.0b1 |
Keywords: | Cc: | Douglas Hays, bill | |
Blocked By: | Blocking: |
Description
dojox.mobile.parser is failing with a dojox.mobile.TextBox? on IE8.
The dojox.mobile.parser's instaniate function is throwing an error: "This command is not suppported" when trying to process a dojox.mobile.TextBox? on IE8 (with Browser Mode: IE8 and Document Mode: IE8 Standards).
You can see the problem by running the dojox/mobile/tests/test_FormControls.html test on IE8.
I ran into this when working on http://bugs.dojotoolkit.org/ticket/13611
Attachments (1)
Change History (4)
comment:1 Changed 9 years ago by
Changed 9 years ago by
Attachment: | 13707-patch.txt added |
---|
Fix for mobile TextBox?, Button and RadioButton? on IE.
comment:2 Changed 9 years ago by
Milestone: | tbd → 1.7 |
---|---|
Owner: | changed from ykami to bill |
Status: | new → assigned |
Ah right, dojo.parser used to have the same problem too, before the refactor, that IE would report a type=... setting on nodes even though the markup didn't say anything about type=...
I'll check in your patch.
Turns out the problem was caused when trying to call
when name is "type".
The fix is to add: _setTypeAttr: null
The problem was also happening with dojox/mobile/Button.js and RadioButton?.js
I will provide a patch.
Doug, thanks for the help.