I'm running the latest build and using server side selection with a TreeListSelectColumn. Markup is below. The server side event SelectedIndexChanged is firing properly and I am using AJAX to update additional controls from the SQL database. Currently the user has to click on the checkbox (i.e. select column) to fire the selected index event and select the item in the tree. I would like to allow the user to click any column in the list to select the item (i.e. checkbox or item text) and fire the selected index event and subsequently the item to be selected.
Is this possible through a setting? I can't seem to find it. Or is there some custom code I need to add to implement this functionality. Thanks..
<
telerik:RadTreeList
ID
=
"radtreeCustomer"
runat
=
"server"
AutoGenerateColumns
=
"false"
AllowMultiItemSelection
=
"false"
GridLines
=
"None"
>
<
Columns
>
<
telerik:TreeListSelectColumn
Display
=
"true"
UniqueName
=
"Checked"
HeaderStyle-Width
=
"30px"
></
telerik:TreeListSelectColumn
>
<
telerik:TreeListBoundColumn
Display
=
"false"
UniqueName
=
"Organization_Id"
DataField
=
"Organization_Id"
></
telerik:TreeListBoundColumn
>
<
telerik:TreeListBoundColumn
Display
=
"false"
UniqueName
=
"Parent_Organization_Id"
DataField
=
"Parent_Organization_Id"
></
telerik:TreeListBoundColumn
>
<
telerik:TreeListBoundColumn
Display
=
"true"
UniqueName
=
"Business_Name"
DataField
=
"Business_Name"
></
telerik:TreeListBoundColumn
>
</
Columns
>
</
telerik:RadTreeList
>