-
9 Jun 2011 5:24 AM #31
The Application Archtecture guide (http://docs.sencha.com/ext-js/4-0/#/...n_architecture) Controller example is missing quotation marks
should beCode:'useredit button[action=save]': { click: this.updateUser }
Code:'useredit button[action="save"]': { click: this.updateUser }
-
9 Jun 2011 6:40 AM #32
In Ext-4.0.2 RC3
multiSelect and stripeRows properties missing from Ext.grid.Panel
-
9 Jun 2011 7:37 AM #33
-
9 Jun 2011 11:57 AM #34
http://docs.sencha.com/ext-js/4-0/#/...n_architecture mention for file structure directory [ext-4.0] but http://docs.sencha.com/ext-js/4-0/#/...etting_started said [extjs]. In practice, the dot break in .NET MVC so the latest should be used.
-
9 Jun 2011 1:54 PM #35
Would be nice if Ext.grid.feature.RowWrap class was included in the API.

-
9 Jun 2011 11:53 PM #36
[4.0.2] On the main page links to examples of version 4.0.1
-
10 Jun 2011 3:36 AM #37
Make documentation of AbstractPlugin useful.
Make documentation of AbstractPlugin useful.
The current documentation - ExtJS 4.0.2 - just states obvious, but not useful, things about plugins. What I would request is that the documentation does the following:
- What is a plugin in ExtJS. The word plugin is used throughout programming and beyond, so it needs to be stated what a plugin is in the ExtJS context.
- What the difference between a plugin and a mixin. When should I choose to implement a plugin and when would I rather choose to implement a mixin.
- Example code presented in a tutorial like style, i.e. showing how to implement a plugin with comments, explanations and considerations.
- It should also be stated that a plugin makes some assumptions about where it is used (I often meet the misconception that a plugin can be used in any class, which is not the case).
Ref.: http://docs.sencha.com/ext-js/4-0/#/...AbstractPlugin
-
10 Jun 2011 3:41 AM #38
Provide turorial on when to implement a mixin instead of doing something like inherit
Provide turorial on when to implement a mixin instead of doing something like inherit
Mixins are new to ExtJS 4. A tutorial on when and why you should consider to implement a mixin is needed. The tutorial should provide information on the differences between a normal class (one that you would 'requires:' or 'uses:') and 'mixins:'.
-
10 Jun 2011 10:32 AM #39
Documentation Suggestion: Store Filtering
Documentation Suggestion: Store Filtering
The documentation for filtering a store provides examples based on passing in filter configs... but lacks the demonstration of passing in a pre-instantiated filter...
The reason I think this is important is because when you pass in a filter config - AbstractStore::decodeFilters() applies the root:'data' property to the config for you... When one of the filters you're applying to the store is already instantiated, this isn't done for you - so it goes without saying - the filter wont work as expected!
Example:
BAD FILTER
Code:store.filter(Ext.create('Ext.util.Filter',{ property: 'fname', value: 'Jared' }));
GOOD FILTER
I don't think its something that necessary requires a large gravity of attention, but if you could add to the examples (within the store documentation) an example of adding an instantiated filter - I think it may help folks that run into the problem like I didCode:store.filter(Ext.create('Ext.util.Filter',{ property: 'fname', value: 'Jared', root: 'data' }));
-
10 Jun 2011 11:50 PM #40
[EXTJSIV-2352] - constrainTo not documented on Ext.window.Window still not documented
[EXTJSIV-2352] - constrainTo not documented on Ext.window.Window still not documented
In the 4.0.2 release notes, Documentation Updates says •[EXTJSIV-2352] - constrainTo not documented on Ext.window.Window, but this is still not documented in the Ext JS 4.0.2 API Documentation page
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote