Custom Query (18300 matches)
Results (1 - 3 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#8918 | fixed | on deleting rows while having filter set | ||
Description |
The error above is thrown when i have a dojox.grid.DataGrid?, apply a filter, delete all filtered rows and the switch back the filter (example included). dojo/data/ItemFileReadStore.js: _assertIsItem: function(/* item */ item){ if(!this.isItem(item)){ throw new Error("dojo.data.ItemFileReadStore?: Invalid item argument."); Browser: Firefox 3.0.7 |
|||
#18244 | wontfix | lang.js fix up the isAlien and _toArray | ||
Description |
Hi sir, I have two question as following
(1) isAlien will return true if it is a built in function, but the source file of this method, why it has a isAlien: function(it){ return it && !lang.isFunction(it) && /\{\s*\[native code\]\s*\}/.test(String(it)); // Boolean } (2) IE9 and above browser can cover the HTMLCollection to Javascript object, In the source, it will call the slow function. _toArray: has("ie") ? (function(){ function slow(obj, offset, startWith){ var arr = startWith||[]; for(var x = offset || 0; x < obj.length; x++){ arr.push(obj[x]); } return arr; } return function(obj){ return ((obj.item) ? slow : efficient).apply(this, arguments); //IE 9 and above, will call the slow function }; })() : efficient, |
|||
#18273 | patchwelcome | dom-style get style bug, return value is error | ||
Description |
I have review the source of dom-style.js, the bug issue from the toPixel function(IE version). it set the node.style.left.style = 50%; and return the style node.style.pixelLeft. |