Jimmy
Jimmy

Reputation: 2106

Showing copied data in Infragistics wingrid

I'm using Infragistics wingrid in my C# winforms app. I need to be able to copy column values from an excel sheet and paste it in this datagrid.The grid should show these new values in the cells.How do I achieve this?What code changes would be required?

I tried it and only one cell value gets updated.

Thanks.

Upvotes: 0

Views: 910

Answers (1)

Gert Arnold
Gert Arnold

Reputation: 109185

In InitializeLayout do:

e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All;

Upvotes: 2

Related Questions