Hi,
I have a RadTreelist with treelist select column.I have 6 rows in a RadTreelist.My requirement is to hide checkboxes in 2 rows based on a condition.How can hide checkbox in a row? and in which event is used for this purpose?I have given My code below.
<telerik:RadTreeList ID="RadTreeList1" runat="server" OnNeedDataSource="RadTreeList1_NeedDataSource"
AutoGenerateColumns="false" AllowMultiItemSelection="true"
AllowPaging="false" AllowSorting="true" DataKeyNames="ID"
ParentDataKeyNames="PID" AlternatingItemStyle-BackColor ="#EFF5FB" ItemStyle-BackColor="#E0ECF8" ShowTreeLines="true" OnItemDataBound="RadTreeList1_ItemDataBound" Width="100%">
<SelectedItemStyle CssClass="SelectedRow" />
<Columns>
<telerik:TreeListBoundColumn DataField="ID" UniqueName="ID" HeaderText="Bound Column" />
<telerik:TreeListSelectColumn HeaderStyle-Width="40px" >
</telerik:TreeListSelectColumn>
</telerik:RadTreeList >
Thanks,
Sindu.