-
8 Feb 2008 3:35 PM #221
Suggestion: API is good, but at the top where there are links for Properties, Methods, Events, etc..... add links for "FAQ" and "Example(s)". As the expression goes "a picture is worth a thousand words" I think would be appropriate with "examples are worth a thousand words".
The "FAQ" could house a lot of the questions that come up in the forums. I still like how php.net and mysql are set up where under each function users post examples, and ask questions, etc.
There's a lot of info to be found on ext through the API, examples, forums, user manual, tutorials (although pretty stale these days)....I think the API could make the cross referencing easier.
Just a suggestion....
-
12 Feb 2008 6:12 PM #222
LoadMask .show and .hide missing in the docs
LoadMask .show and .hide missing in the docs
not sure if this is the forum to put this in (Admins please move if not), but in the docs, Ext.LoadMask does not list .show() or .hide()... I had to stumble on those by reading through the forums. I've noticed several things not in the api docs... it'd b nice if they were wikified.
Thanks for all the great work, and keep it up.
WillLast edited by mystix; 12 Feb 2008 at 7:08 PM. Reason: merged with main thread
-
13 Feb 2008 12:07 AM #223
I just added them. And also the absolutely central store config which defines the Store to bind to. During that Store's load, the mask masks its configured Element.
Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
13 Feb 2008 7:21 AM #224
resize event stub incorrect
resize event stub incorrect
I've noticed that for the event resize (on BoxComponent and then on its subcomponents) has the following stub..
should this not be ..resize : ( Ext.Component this, Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight )
Was most confusing when overriding this event for a componentresize : ( Ext.Component this, Number adjHeight, Number adjWidth, Number rawHeight, Number rawWidth)
-
13 Feb 2008 8:53 PM #225
[2.0.1] documentation for RowSelectionModel
[2.0.1] documentation for RowSelectionModel
apparently the argument order is
rowselect : ( SelectionModel this, Record record, Number rowIndex )
instead of
rowselect : ( SelectionModel this, Number rowIndex, Record record )
thx
papasi
-
14 Feb 2008 12:25 AM #226
"Mixed" issues
"Mixed" issues
In Ext.menu.Menu, the "items" config option is described to be of type "Mixed", and then described as an "array of items".
Looking in the code reveals that it is in fact a Ext.util.MixedCollection. This should be mentioned, with a link to the MixedCollection class.
In addition, in the documentation of the each() method of Ext.util.MixedCollection, the specified function is said to be called with three parameters, where the first is item of type "Mixed". This item is the collection item, and its type is simply "Object", in the same way that get(), first() and last() methods return an Object.
-
15 Feb 2008 3:43 AM #227
Class Ext.util.Observable
- missing method relayEvents
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
15 Feb 2008 4:34 AM #228
Class:
Ext.grid.GridView
Missing method:
getRows()
(note the plural)German EXT-User and -Lover :-).
-
17 Feb 2008 5:09 AM #229
handler of menuItem
handler of menuItem
The API docs say nothing about the arguments provided for the handler of menuItem click. I have uncovered them:
- item - a clicked item
- e - issued event
Last edited by mystix; 17 Feb 2008 at 5:42 AM. Reason: moved from Open Discussion
-
18 Feb 2008 10:19 PM #230
FormPanel
clientvalidation : ( Form this, Boolean valid )
should be
clientvalidation : ( FormPanel this, Boolean valid )GWT-Ext Widget Library
http://www.gwt-ext.com/


Reply With Quote