-
14 Dec 2007 11:03 AM #171
Ext.dd.DDProxy - events intermingled with public properties
Ext.dd.DDProxy - events intermingled with public properties
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?
-
21 Dec 2007 3:28 AM #172
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
-
22 Dec 2007 11:25 PM #173
Ext.form.FieldSet
checkboxToggle is defined as Boolean.
The code accepts either Boolean or an Object defining the "checkbox"
EDIT: Fixed in SVN
-
24 Dec 2007 7:18 PM #174
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;
}
-
26 Dec 2007 3:28 PM #175
Ext.grid.ColumnModel
getDataIndex
returns a String. Documentation says it returns a Number
-
26 Dec 2007 6:11 PM #176
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.
-
28 Dec 2007 2:28 PM #177
Action.failureType has weird text
Action.failureType has weird text
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}
-
29 Dec 2007 7:51 AM #178
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).
-
29 Dec 2007 9:22 PM #179
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
30 Dec 2007 2:36 PM #180
Link to not minified .js missing in column tree example
Link to not minified .js missing in column tree example
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.


Reply With Quote
