четверг, 4 декабря 2014 г.

Make text in ExtJS GridPanel cell selectable

I suppose it one of the most annoying thing in great in general ExtJS framework, that user can't select and copy-paste text from the grid. To fix this for your users pleasure just add simple fix to gridPanel configuration
new Ext.create('Ext.grid.Panel', {
    title: 'My Grid with selectable text',
    // Here the fix comes!
    viewConfig: {
        enableTextSelection: true
    },
    ...