-
28 Oct 2011 9:55 PM #1
Unanswered: Copy grid cell value into clipboard in extjs4- Help needed
Unanswered: Copy grid cell value into clipboard in extjs4- Help needed
Hi all,
I want to copy the selected grid cell value into the clipboard . i don't have any clue to do that .
Guys please help me to implement this feature.
Thanks in advance
Renga
-
10 Sep 2012 10:08 PM #2
Hi,
Did you find the solution? If yes can you please share the solution?
Thanks!
-
11 Sep 2012 2:50 AM #3
-
11 Sep 2012 7:25 PM #4
Iam using 4.0.
So I found a workaround for 4.0
Code:Code:columns:[ {header:'Name', dataIndex:'name', field:'textfield'}, {header:'Email', dataIndex:'email', flex:1, editor:{ xtype:'textfield', readOnly:true, allowBlank:false } }, {header:'Phone', dataIndex:'phone'} ], selType:'rowmodel', plugins:[ Ext.create('Ext.grid.plugin.RowEditing',{ clicksToEdit:1 }) ],
I have used the rowediting plugin and I have set the editor to 'textfield' of the column and used the readOnly config which will avoid any update on the grid data.
This works pretty well on all browsers.
Thanks for your help


Reply With Quote