-
23 Nov 2011 3:46 PM #21
Sorry it's been so long, Getting married and going on vaction took me away from a computer for a while.
That's awesome. I'll add that line and upload version 1.0.9 as soon as I can.
Thanks for figuring that out, i really haven't had as much time as i would like lately to fix it.Last edited by darkwolfe; 23 Nov 2011 at 3:47 PM. Reason: grammer
-
3 Mar 2012 8:32 AM #22
hello widget is good!
but I see I can not use the tree with the options checked: true, or checked: false .... can someone give me a hand with this .. I have reviewed the forum and can not find a solution to this (for Ext v3.[34] .0)
any help is appreciated!
-
7 Mar 2012 12:03 PM #23
inishi01,
Thanks for your feedback. The editor tree grid extension is based on the tree grid that comes with ext, so what ever functionality is present will also be in the editor tree grid. You can try searching the forums for tree grid and the checkbox tree to see if it's in there somewhere, however, i don't think it supports it. I haven't had a lot of time lately to update the editor tree grid, but the next time i get some free time i'll look into adding this functionality.
-
10 Aug 2012 8:46 AM #24
Format problem with DateField
Format problem with DateField
Format problem with DateField
Thank you for this nice introduction to the EditorGrid. The problem I noticed and that is not part of the examples is how to handle a Date format?
For instance, if you use a column of the type of: editor: new Ext.form.DateField:
Code:columns:[{ header: 'Composants', dataIndex: 'text', width: 125 },{ xtype: 'datecolumn', header: 'Date Installation', format: 'd/m/Y', width: 95, dataIndex: 'dateInstallation', editor: new Ext.form.DateField({ selectOnFocus: true, format:"d/m/Y", originalValue: true, anchor: '100%' }) }]
The problem appears after editing the column, showing a result of
Wed Aug 08 2012 00:00:00 GMT+0200 (Paris, Madrid (heure d'été))
instead of 'dd/mm/yyyy'. The problem lies probably on an other level than the EditorGrid, since the editor field is in the right format.
Have you some suggestions or experience concerning this format problem?
-
17 Aug 2012 8:19 AM #25
Hi gorun-ul,
Sorry it's taken so long for me to get back to you about this. Try using a date renderer in your column config:
That should do the trick. The reason why you are getting that long annoying date string is because that is what the Ext.form.DateField component naturally outputs. It's the standard JavaScript output from a date object. The renderer should allow you to specify what you want the output to look like.Code:renderer : Ext.util.Format.dateRenderer('d/m/Y'),
Let me know if that helped!
-
13 Nov 2012 11:29 PM #26
Context Menu
-
22 Nov 2012 11:33 AM #27
Is it possible to implement alternate row coloring system on this plugin



Reply With Quote