-
11 Jan 2013 8:46 AM #1
GridView markDirty Config no longer works.
GridView markDirty Config no longer works.
It appears that the following markDirty configuration doesn't do anything anymore in V4.2 Beta2:
I believe the code to control this existed in V4.1.1 in the Ext.grid.header.Container class. The prepareData() method in that class is totally removed in V4.2 Beta.Code:Ext.define('QLP.view.permission.ActionGrid', { extend : 'Ext.grid.Panel', title : 'Assigned Actions', viewConfig : { markDirty : false } ... });
Code:/** * Maps the record data to base it on the header id's. * This correlates to the markup/template generated by * TableChunker. */ prepareData: function(data, rowIdx, record, view, panel) { ... if (me.markDirty) { obj[headerId + '-modified'] = record.isModified(header.dataIndex) ? Ext.baseCSSPrefix + 'grid-dirty-cell' : ''; } ...
-
12 Jan 2013 9:54 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,654
- Vote Rating
- 434
Thanks for the report, this has been fixed for the next release.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
You found a bug! We've classified it as
EXTJSIV-8222
.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.


Reply With Quote