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
    Offline posted

    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.

     

     

     

Children