In the DDProxy documentation, the event handlers (such as onDragDrop) are intermingled with public properties. (Whereas in many other classes, these are separated out). Is this intentional?
In the DDProxy documentation, the event handlers (such as onDragDrop) are intermingled with public properties. (Whereas in many other classes, these are separated out). Is this intentional?
In the tabpanel the enableTabScroll is defined as a number instead of boolean
* @cfg {Number} enableTabScroll True to enable scrolling to tabs that may be invisible due to overflowing the
* overall TabPanel width. Only available with tabs on top. (defaults to false).
*/
enableTabScroll: false,
EDIT: Fixed in SVN
Ext.form.FieldSet
checkboxToggle is defined as Boolean.
The code accepts either Boolean or an Object defining the "checkbox"
EDIT: Fixed in SVN
in Class Ext.grid.CellSelectionModel doc:
But 'getSelectedCell' only return a coordinate array,The object stored as the selection and returned by getSelectedCell contains the following properties:
record : Ext.data.record
The Record which provides the data for the row containing the selection
cell : Ext.data.record
,and I can't get the selected record from CellSelectionModel except to use undocumented property-'CellSelectionModel.selection.record'.PHP Code:
/**
* Returns the currently selected cell,.
* @return {Object} The selected cell or null if none selected.
*/
getSelectedCell : function(){
return this.selection ? this.selection.cell : null;
}
Ext.grid.ColumnModel
getDataIndex
returns a String. Documentation says it returns a Number
Ext.data.Store.addSorted()
"(Local sort only) Inserts the passed the record in the Store at the index where it should go based on the current sort information"
second the should be removed I guess. Weird sentence anyway.
The docs for Action.failureType are weird. Contents is:
EDIT: Fixed in SVNCode:The type of failure detected. See {@link #Ext.form.Action-Action.CLIENT_INVALID CLIENT_INVALID}, {@link #Ext.form.Action-Action.SERVER_INVALID SERVER_INVALID}, {@link #Ext.form.Action-Action.CONNECT_FAILURE CONNECT_FAILURE}, {@link #Ext.form.Action-Action.LOAD_FAILURE LOAD_FAILURE}
I see something wrong in the Ext.Viewport documentation both with Safari and FF under Max Osx.
As you can see from the attached images there is a odd "Page title" bar in the middle of the example source code.
p.s: after 2 consecutive crash I can assert that the ajax file uploader you use in this forum makes always crash Safari (running on Mac Osx).
In http://extjs.com/deploy/dev/examples...lumn-tree.html there is no link to the not minified http://extjs.com/deploy/dev/examples...column-tree.js.