Hi there, I've enabled the tick-boxes to select a row in the grid view, I need multi-select to work (which it does), but I need to achieve the following:
1. To disable the select-all tick box in the header column to ensure each tick is manual
2. To prevent clicking a row ticking the tick box (the user must use the box).
The radGrid I'm currently using is thus:
<telerik:RadGrid ID="RadGrid1" AllowSorting="True" AllowPaging="True" PageSize="5" AllowMultiRowSelection="true" runat="server" GridLines="None" Width="75%" OnSortCommand="RadGrid1_SortCommand" OnPageIndexChanged="RadGrid1_PageIndexChanged" OnItemDataBound="RadGrid1_ItemDataBound">
<MasterTableView>
<Columns>
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" visible="false" />
</Columns>
</MasterTableView>
<PagerStyle NextPageText="Next" PrevPageText="Prev" Mode="NextPrevAndNumeric"></PagerStyle>
<ClientSettings>
<Selecting AllowRowSelect="True"></Selecting>
</ClientSettings>
</telerik:RadGrid>
1. To disable the select-all tick box in the header column to ensure each tick is manual
2. To prevent clicking a row ticking the tick box (the user must use the box).
The radGrid I'm currently using is thus:
<telerik:RadGrid ID="RadGrid1" AllowSorting="True" AllowPaging="True" PageSize="5" AllowMultiRowSelection="true" runat="server" GridLines="None" Width="75%" OnSortCommand="RadGrid1_SortCommand" OnPageIndexChanged="RadGrid1_PageIndexChanged" OnItemDataBound="RadGrid1_ItemDataBound">
<MasterTableView>
<Columns>
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" visible="false" />
</Columns>
</MasterTableView>
<PagerStyle NextPageText="Next" PrevPageText="Prev" Mode="NextPrevAndNumeric"></PagerStyle>
<ClientSettings>
<Selecting AllowRowSelect="True"></Selecting>
</ClientSettings>
</telerik:RadGrid>