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
365
Column Header is also Copied
posted

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.

Parents
No Data
Reply
  • 20872
    Suggested Answer
    Offline posted

    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.

     

Children