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,
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.
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