Custom Query (18300 matches)
Results (28 - 30 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#14971 | fixed | demos/touch: severe regression when running with Dojo 1.8 (dojo-trunk) | ||
Description |
Updates are needed in demos/touch to fix a severe regression when running with dojo-trunk (Dojo 1.8). Reproduced with http://svn.dojotoolkit.org/src/view/anon/all/trunk as of 6 March 2012. How to reproduce: Launch demos/touch/demo.html in any browser. => The pie chart is simply not there. The console shows: "Uncaught TypeError?: Cannot read property 'generateGradient' of undefined" |
|||
#14978 | worksforme | Dojo parser: parsing comma-separated elements into an array should support a way to escape commas inside elements | ||
Description |
Various widgets have properties of type Array that can be specified in mark-up using strings. For example, one can specify <div data-dojo-type="dojox.mobile.SpinWheelSlot?"
or <div data-dojo-type="dojox.mobile.SpinWheelSlot?"
The Dojo parser transforms these comma-separated strings into an array of 2 elements (this holds for both dojo/parser and dojox/mobile/parser). So far so good, but it seems there's currently no easy way to include a comma in an element. Say, if we need an array of 2 elements, "a,A" and "b,B", specifying <div data-dojo-type="dojox.mobile.SpinWheelSlot?"
the parsed array contains 4, not 2 elements. The following attempts to escape the comma character do not work either: <div data-dojo-type="dojox.mobile.SpinWheelSlot?"
<div data-dojo-type="dojox.mobile.SpinWheelSlot?"
How to reproduce:
=> The console shows the elements of the parsed arrays. In all cases, the array has 4, not 2 elements. |
|||
#15013 | fixed | dojox.mobile.ViewController: transitions broken in some browsers | ||
Description |
The mobile view transitions are broken in some browsers. Reproduced in Firefox 10 on desktop using dojo-trunk as of 14 March 2012. Works fine in other desktop and mobile browsers. How to reproduce:
=> No transition. Patch attached. The bug exists in dojo-trunk since rev. 27594 of dojox/mobile/ViewController.js. The bug is NOT present in the 1.7.2 branch. |