Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
300
Copy data from Infragsitics Web Data grid to clipboard
posted

Hi Team,

I am using Infragistics v16.1 Web Data Grid. And i want to handle copy multiple selected cell's data from web data grid to clipboard  and paste again into web datagrid by using  keydown  handle event of the grid:

Below is my code:

<Behaviors>
<ig:Selection CellClickAction="Cell" ColumnSelectType="multiple" CellSelectType="multiple">
</ig:Selection>
<ig:Activation Enabled="true">
</ig:Activation>
<ig:EditingCore BatchUpdating="true" Enabled="true">
<Behaviors>
<ig:CellEditing Enabled="true">
</ig:CellEditing>
</Behaviors>
</ig:EditingCore>
<ig:ColumnResizing Enabled="false">
</ig:ColumnResizing>
<ig:ColumnFixing Enabled="false">
</ig:ColumnFixing>
<ig:RowSelectors RowNumbering="True">
</ig:RowSelectors>
</Behaviors>

And i want to handle this in keyup event:

var evt = args.get_browserEvent();

if (evt.ctrlKey && evt.keyCode == 67) {

}

Can you please help me on this.