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
75
Copy from Grid to excel Shows the Hidden Column
posted

I am using webdatagrid in infragistics Version=11.2.20112.2141

While copying the cell from grid and pasting to excel ,I found Hidden columns also get copy if they exits between 2 selected cells, My grid has groupfield columns also.

 

 i am using the following Behaviors for the grid .Please advise me what  i am doing wrong

<Behaviors>
           <ig:Clipboard CopyColumnHeader="false"  CopyFormatted="false" Enabled="true"  IgnoreHidden="true" EnableCopy="true"  />
            <ig:RowSelectors Enabled="false" />
            <ig:Selection CellSelectType="Multiple" CellClickAction="Cell" ColumnSelectType="Multiple" RowSelectType="Multiple" EnableHiddenSelection="false" />
            <ig:Activation Enabled="true" />
            <ig:EditingCore>
                     <Behaviors>
                       <ig:CellEditing>
                       <CellEditingClientEvents ExitedEditMode="WebDataGrid1_ExitingEditMode" />
                       </ig:CellEditing>
                  </Behaviors>
            </ig:EditingCore>
            <ig:ColumnMoving>
            </ig:ColumnMoving>
    </Behaviors>