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
410
How to add a CheckBox Header to ig:BoundCheckBoxField
posted

Hi Guys,

following is my existing grid please help me to setup a checkbox header for the same.

<ig:WebDataGrid ID="grdItem" runat="server" Width="100%" AutoGenerateColumns="False"

EnableAjax="true" OnRowUpdating="grdPrMaintenanceItem_RowUpdating" OnInitializeRow="grdMaintenanceItem_InitializeRow"
OnColumnSorted="grdPrMaintenanceItem_ColumnSorted" DataKeyFields="Id" ViewStateMode="Enabled"
EnableDataViewState="True" DefaultColumnWidth="100%" ItemCssClass="thinRows">


<Columns>
<ig:BoundDataField DataFieldName="ItemName" Key="ItemNameKey" Width="24%">
<Header Text="Item description" />
</ig:BoundDataField>
<ig:BoundCheckBoxField Width="20px" DataFieldName="IsSelect" Key="isSelectKey" VisibleIndex="0" />
</Columns>
</ig:WebDataGrid>