#12719 closed defect (fixed)
dojox.mobile: TextArea does not work on IE6
Reported by: | ykami | Owned by: | ykami |
---|---|---|---|
Priority: | high | Milestone: | 1.7 |
Component: | DojoX Mobile | Version: | 1.6.0 |
Keywords: | 1.7-mobile | Cc: | |
Blocked By: | Blocking: |
Description
dojox.mobile.TextArea does not work on Internet Explorer 6.
- Place the file under dojox/mobile/tests folder
- View it on IE6
--> Nothing is displayed
At above situation, JavaScript error occurs on IE6. It works successfully if textarea tag has type attribute.
Change History (2)
comment:1 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
(Comment from doughays) This is a dojox/mobile/parser.js problem. You can change the parser to dojo.parser and it works fine. The mobile parser has not been picking up important changes in the dojo.parser. Specifically [24185] started using getAttributeNode that correctly determines if an attribute was explicitly specified on the node, or implicitly added by the browser.
Note: See
TracTickets for help on using
tickets.
(In [24390]) Fixes #12719 !strict. Use getAttributeNode instead of getAttribute.