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
20
How to add a checkbox in grid header
posted

My application using .net framework 2.0 (visual studio 2005)  and

Infragistics.WebUI.UltraWebGrid.v5.1

Issue - How to add a checkbox in the grid header. Please assist me.

 

 

  • 1765
    posted

    Hello Punnamattom, Please see the code snippet below to add checkbox contol in the UltraWebGrid header.

    <Columns>
          <igtbl:TemplatedColumn DataType="System.Boolean" Type="CheckBox">
                <Header Caption="&lt;input type='CheckBox' AutoPostBack='false' /&gt;"
                            ClickAction="Select" Fixed="True" TitleMode="Always">
                  </Header>
           </igtbl:TemplatedColumn>                       
    </Columns>

    Thank you,

    Swetha