I have upgraded from RADcontrols 2006 to 2009. The below code that used to work is no more working. This code is for treeview in a combobox. once a node item is selected it supposed to be the show up on the radcombobox text. I am able to populate and navigate through treeview items but when a node is selected, the item is not being displayed as the selected item in combobox.
<div onmousedown="allowCBClose(true);">
<radC:RadComboBox ID="ddlHierachy" runat="server" RadControlsDir="~/Resources/" Skin="WindowsGray"
SkinsPath="~/Resources/Skin/RadControls/ComboBox/Skins" Height="200px" NoWrap="True"
Width="80%" OnClientDropDownClosing="OnClientDropDownClosing" AllowCustomText="true"
EnableLoadOnDemand="true" OnItemsRequested="ItemsRequested" OnClientItemsRequested="OnClientItemsRequested"
OnClientKeyPressing="keypressing">
<ItemTemplate>
<div onmouseup="allowCBClose(false);">
<radT:RadTreeView ID="rtEventCycle" runat="server" BeforeClientClick="ProcessClientClick"
AfterClientClick="ProcessClientClick">
</radT:RadTreeView>
</div>
</ItemTemplate>
</radC:RadComboBox>
</div>
Can some one help me upgrade the code to the newer version of radcontrols in 2009. I changed radC to telerik. But it doesn't work and then it says BeforeClientClick and AfterClientClick are no more valid.
<div onmousedown="allowCBClose(true);">
<radC:RadComboBox ID="ddlHierachy" runat="server" RadControlsDir="~/Resources/" Skin="WindowsGray"
SkinsPath="~/Resources/Skin/RadControls/ComboBox/Skins" Height="200px" NoWrap="True"
Width="80%" OnClientDropDownClosing="OnClientDropDownClosing" AllowCustomText="true"
EnableLoadOnDemand="true" OnItemsRequested="ItemsRequested" OnClientItemsRequested="OnClientItemsRequested"
OnClientKeyPressing="keypressing">
<ItemTemplate>
<div onmouseup="allowCBClose(false);">
<radT:RadTreeView ID="rtEventCycle" runat="server" BeforeClientClick="ProcessClientClick"
AfterClientClick="ProcessClientClick">
</radT:RadTreeView>
</div>
</ItemTemplate>
</radC:RadComboBox>
</div>
Can some one help me upgrade the code to the newer version of radcontrols in 2009. I changed radC to telerik. But it doesn't work and then it says BeforeClientClick and AfterClientClick are no more valid.