Hi,
i am facing a problem in ultra win grid.
in the ultra win grid whenever i am copying a column data and pasting it,
the column header is also getting copied.
the same case is with the multiple columns copying also.
could any one suggest me a good solution ????
Thanks and Regards.
Hello,
AllowMultiCellOperation is flagged enumeration and it seems that you are setting it to .All which includes the flag .CopyWithHeaders .
What you should do in your case is to set the following :
this.ultraGrid1.DisplayLayout.Override.AllowMultiCellOperations = AllowMultiCellOperation.Copy;
Please let me know if this is what you are looking for.
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.
Hello
i am using the following property
e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All
it is meant for copy,cut,paste,delete
but while copying it is copying header information also.
if i am using
e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.Copy;
only copy can be performed
no cut,paste,delete can be used
but with all properties i.e e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All
header information is also copied.
Thank You,