-
5 Jun 2011 10:15 PM #21
Ext.grid.plugin.CellEditing has this example for the edit event:
The handler uses only one argument, but the first argument is not the editEvent, but the editor itself, which is why this will fail.grid.on('edit', onEdit, this);
function onEdit(e) {
// execute an XHR to send/commit data to the server, in callback do (if successful):
e.record.commit();
};
-
6 Jun 2011 2:59 AM #22
"store" config option in missing in Ext.panel.Table and because of inheritance in Ext.grid.Panel.
-
6 Jun 2011 12:46 PM #23
The static methods listed for StoreManager do not actually exist:
They're fine everywhere except on StoreManager, as far as I can tell. This is due to StoreManager being an object, instead of a class.
-
6 Jun 2011 11:04 PM #24
Thanks for noting neonova, we really need to tackle the static methods thing. I already did some re-arrangements in the docs parser code, so hopefully we can end this mess soon.
-
7 Jun 2011 5:27 AM #25
Missing configuration annotations
Missing configuration annotations
I keep running into situations where config options are not listed in the API browser since they are not annotated in the source code. As an example Ext.chart.Chart specifies 'series' and a 'store' configuration but these are not annotated in the source code and displayed as config options in the API browser. This makes it very hard to find out which configurations that may actually be passed.
-
7 Jun 2011 6:21 AM #26
Element.fadeIn endOpacity
Element.fadeIn endOpacity
The endOpacity option for Element.fadeIn looks to have been replaced by opacity. Either the docs are wrong or the implementation is wrong.
-
7 Jun 2011 10:50 AM #27
I apologize if these were already mentioned...
* Ext.grid.Panel - missing selType config.
* Ext.data.TreeStore - missing model config.
* Ext.ElementLoader - missing callback config.
-
7 Jun 2011 11:05 AM #28
Ext.window.MessageBox: Missing help for property "fn".
-
8 Jun 2011 12:15 AM #29
Unfinished sentence at http://docs.sencha.com/ext-js/4-0/so...od-alignPicker. It reads: "Aligns the picker to the" and then just stop there...
-
8 Jun 2011 7:59 AM #30
The list for Ext.panel.Tool's handler config isn't correct in the arguments that are passed. The third argument is an Ext.panel.Header, not an Ext.panel.Panel. This is different from ExtJS 3 where it was the Ext.Panel that contained the tool.
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote