Hi ,
i'm using Client-side Insert/Update/Delete Grid control. In add/edit tab I am using a combo box. Depending on the selection of combovalue I need to hide and show some rows. After page load when I try to change combobox value it gives me following error
"Object doesnot support this property or method".
Here is my code:
i'm using Client-side Insert/Update/Delete Grid control. In add/edit tab I am using a combo box. Depending on the selection of combovalue I need to hide and show some rows. After page load when I try to change combobox value it gives me following error
"Object doesnot support this property or method".
Here is my code:
<telerik:RadComboBox ID="RcmbControlType" runat="server" Height="200px" Width="200px"
DropDownWidth="200px" EmptyMessage="Choose a Control" HighlightTemplatedItems="true"
DataSourceID="SqqlDSControlType" DataTextField="ControlName" DataValueField="ID" OnClientSelectedIndexChanged="OnClientSelectedIndexChanged()">
</telerik:RadComboBox>
function
OnClientSelectedIndexChanged(sender, args)
{
var item = eventArgs.get_item();
alert(item);
}