-
11 Jul 2011 10:13 AM #101Sencha - Community Support Team
- Join Date
- Jan 2009
- Location
- Palo Alto, California
- Posts
- 1,941
- Vote Rating
- 6
Ext JS Senior Software Architect
Personal Blog: http://edspencer.net
Twitter: http://twitter.com/edspencer
Github: http://github.com/edspencer
-
12 Jul 2011 2:48 AM #102
in "Ext.grid.plugin.RowEditing"->methods->startEdit
in API, the 2 parameters are both "Model", but it seems like they should be Numberic, shown as below:
PHP Code:validateedit: function(editor, e, options){
editor.startEdit(1,1);//this can work
editor.startEdit(1,"mobile");//this cannot work
}
-
12 Jul 2011 10:53 PM #103
The "write" event for Ext.data.Store isn't documented. It exists and I have used it:
Code:store.on('write', function() { store.load(); });
-
13 Jul 2011 1:30 AM #104
BUGS: Loading/Saving a Dynamic Form using XML Example
BUGS: Loading/Saving a Dynamic Form using XML Example
1) Submit button is always disabled (even after loading form)
2) JSON form example dosn't point to JSON Example. It refers to XML Example
Please refer to
http://dev.sencha.com/deploy/ext-4.0.../xml-form.html
-
13 Jul 2011 2:23 AM #105
Link should be updated.
Link should be updated.
Steps to reproduce:
1) Go to http://docs.sencha.com/ext-js/4-0/#/...cfg-baseParams
2) Notice the link to Ext.Object.toQueryString. Click the link.
3) You are now taken to a deprecated method, which tells you the new correct URL to go to, http://docs.sencha.com/ext-js/4-0/#/...-toQueryString
Fix: Update the link to go directly to the correct page, instead of taking the detour via the deprecated method.
-
13 Jul 2011 3:33 AM #106
`write` evnt of AbstractStore is not documented
`write` evnt of AbstractStore is not documented
Probably already reported, anyway - the `write` event of the AbstractStore is not documented
-
13 Jul 2011 10:59 AM #107Sencha - Community Support Team
- Join Date
- Jan 2009
- Location
- Palo Alto, California
- Posts
- 1,941
- Vote Rating
- 6
Ext JS Senior Software Architect
Personal Blog: http://edspencer.net
Twitter: http://twitter.com/edspencer
Github: http://github.com/edspencer
-
15 Jul 2011 12:08 AM #108
Ext.form.field.File config readOnly
Ext.form.field.File config readOnly
Ext.form.field.File element's config readOnly says:
However, I have discovered that the default is true. The file field doesn't allow writing into it unless readOnly is set to false explicitly.readOnly : Booleantrue to mark the field as readOnly in HTML (defaults to false).
-
15 Jul 2011 5:05 AM #109
There are two files with the same name but different case:
docs/source/JSON.html
docs/source/Json.html
Therefore one gets lost on my Mac OSX, which has a case-insensitive filesystem by default.
They are different files:
> md5sum docs/source/Json.html docs/source/JSON.html
c08488591ddf7a6a647170405b617089 docs/source/Json.html
61f26034047770fbea55e4c1653d5c71 docs/source/JSON.html
(Side note: I did some research since I'm used to Linux and rather prefer case-sensitive filesystems, but many Apps on Mac seem to have problems which such a non-default setting).
-
15 Jul 2011 6:13 AM #110
Heh, I had always thought that OSX filesystem was case-sensitive. Anyway, thanks for reporting, it's has been already fixed internally to please Windows users

Thank you for reporting this bug. We will make it our priority to review this report.



Reply With Quote