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 ,
Could you please provide to us a small sample or let as know if there is any specific steps that we should follow to get the mentioned behavior.
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.
Hi Danko
thanks its working
but i don't know why it was not working with ALL
i am having one more problem
cut-paste functionality i.e ctrl-X and ctrl-V
i am able to cut a cell but unable to paste as it is pasting blank cell,
not the cell which i had cut
could u provide me a solution to this problem
thanks a lot
Hello,
Since the AllowMultiCellOperation is enumeration you are able to choose which of the operations to allow. You should use something like the following :
ultraGrid1.DisplayLayout.Override.AllowMultiCellOperations = AllowMultiCellOperation.Paste | AllowMultiCellOperation.Copy | AllowMultiCellOperation.Delete | AllowMultiCellOperation.Cut;
Please let me know if you have any further questions on this matter.
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,
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.