Custom Query (18300 matches)
Results (190 - 192 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5229 | wontfix | Support for alternate URL argument formatting | ||
Description |
Currently, the content object passed to xhr[Get|Post] is formatted using ?'s, &'s and ='s, which is generally groovy. However, in the case of a site which implements MVC style URL's, this isn't very friendly. Rather than "?param1=value1¶m2=value2", it would be useful to be able to have /'s used for each separator, ala "/param1/value1/param2/value2". My particular case revolves around the use of dojox.data.QueryReadStore, but I think that providing the solution at that level is really only a short-term solution. I'm surprised this hasn't come up before... but I guess the fact that it hasn't may mean I'm a genuine minority. I do realize that this functionality can be implemented by simply eliminating the content argument and generating the full URL by hand, but I can't help but feel that that is a hackish solution. |
|||
#5250 | wontfix | dojo.grid.data.Objects does not work well with editors | ||
Description |
I tried to get the grid to work with editors, and it threw an acception. I found out this was because it was using split(0) to copy the row. Since objects don't have a split method it raised an acception. Upon adding the function below to dojox.grid.data.Objects, the editor works normally, but the value in the grid does not change after editing. No exception was given. copyRow: function(inRowIndex) {
} |
|||
#5276 | fixed | Calendar widget breaks at certain times | ||
Description |
In dojo 1.0.1, a line in date.js's dojo.date.add function causes the calendar widget to break at certain times of the day: sum["setUTC"+property](sum["getUTC"+property]()+amount); To reproduce the error, set the computer's time to 9:00AM and set the computer's timezone to (GMT +10:00) Brisbane, say. Now load up a calendar widget. http://download.dojotoolkit.org/release-1.0.1/dojo-release-1.0.1/dijit/tests/test_Calendar.html
Here are the symptoms: This happens in FF2 and IE. removing the "UTC"s in that line (to match dojo 1.0.0) makes things work. ie. sum["set"+property](sum["get"+property]()+amount);
The bug is reproducible at different time settings as well. |