Threaded View
-
7 Apr 2009 3:03 PM #1
[FIXED][3.0] BasicForm and itemId for the items property
[FIXED][3.0] BasicForm and itemId for the items property
The BasicForm and the FormPanel handle their items is slightly different ways which makes for some confusing debug sessions! It would be nice if BasicForm also understood itemId. After all, it is also in the collection named items. This would be both more consistent and make some things easier..
Original:
Proposed:PHP Code:this.items = new Ext.util.MixedCollection(false, function(o){
return o.id || (o.id = Ext.id());
});
PHP Code:this.items = new Ext.util.MixedCollection(false, function(o){
return o.itemId || o.id || (o.id = Ext.id());
});
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote