DaveC426913
14 Jul 2010, 9:39 AM
In the Toolbars example, very last line before the closing braces:
88: new Ext.Panel({
89: id: 'toolbartxt',
90: html: 'Pick a button, any button. <br /><small>By using SASS, all of the buttons on this screen can be restyled dynamically. The only images used are masks.</small>',
91: fullscreen: true,
92: dockedItems: dockedItems
93: });
This seems to be a config option called dockedItems (which refers to a variable named, appropriately, dockedItems) in the Panel class. I do not find a dockedItems option in the API (though there are plenty of methods for manipulating it).
Is this just an undoc'd feature?
88: new Ext.Panel({
89: id: 'toolbartxt',
90: html: 'Pick a button, any button. <br /><small>By using SASS, all of the buttons on this screen can be restyled dynamically. The only images used are masks.</small>',
91: fullscreen: true,
92: dockedItems: dockedItems
93: });
This seems to be a config option called dockedItems (which refers to a variable named, appropriately, dockedItems) in the Panel class. I do not find a dockedItems option in the API (though there are plenty of methods for manipulating it).
Is this just an undoc'd feature?