Just checked 4.1 b2 and "enableTextSelection" is nowhere to be found for Ext.grid.Panel !
Can someone please comment regarding this/ how to make it work in the grid?
Just checked 4.1 b2 and "enableTextSelection" is nowhere to be found for Ext.grid.Panel !
Can someone please comment regarding this/ how to make it work in the grid?
According to the 4.1.0-beta-2 docs it's a config option for the grid view, so it should be something like this:
Code:Ext.create('Ext.grid.Panel', { ... viewConfig: { enableTextSelection: true } });
It works for me too! Thank you very much for this!