Opened 8 years ago
Closed 8 years ago
#16962 closed defect (fixed)
dojox.widget.MultiSelectCalendar doesn't work with lite query selector
Reported by: | tsemachh | Owned by: | bill |
---|---|---|---|
Priority: | undecided | Milestone: | 1.9 |
Component: | DojoX Widgets | Version: | 1.8.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Hi We faced issue with dojox.widget.MultiSelectCalendar? it was failing with error:
SyntaxError: An invalid or illegal string was specified
After massive debugging I've discovered the following: The code there uses :
dojo.query("[dijitDateValue=" + oldFocus.valueOf() + "]", this.domNode)[0] : null;
This tries to query:
[dijitDateValue=1364912420513] which fails with lite query selector.
For now I switched back to acme but I think code either should be fixed or at least require acme selector.
thx tsemach
Change History (3)
comment:1 Changed 8 years ago by
comment:2 Changed 8 years ago by
Milestone: | tbd → 1.9 |
---|---|
Owner: | changed from dante to bill |
Status: | new → assigned |
Note: See
TracTickets for help on using
tickets.
[dijitDateValue=1364912420513] should work with the lite engine, according to http://dojotoolkit.org/reference-guide/1.8/dojo/query.html#dojo-query. Maybe it's just missing quotes around the value?