Class Type - RadCombobox
Value=1 text=one --> Select this value --> visible radcombobox 1 (Textbox1 visible false)
value=2 text=two --> Select this value--> visible radcombobox 1 (Textbox1 visible false)
value=3 text=others --> visible Textbox1 --> radcombobox 1(visible false)
then i click the class Type(Others)
all the controls in RadGriview.
i need solution using javascript
Please help.....
Hi Ilaya,
Do I understand that you have 2 combo boxes in the same row, and if selecting an item in Combo1 will change the visibility of Combo2?
Also, can you share the RadGrid markup code so that we can see how it was configured?
<EditFormSettings EditFormType="Template">
<FormTemplate>
<table>
<td>
<telerik:RadComboBox ID="TYPE" runat="server" Width="175px" EmptyMessage="Type"
AllowCustomText="true" EnableLoadOnDemand="True" CustomErrorMessage="Please Select the Type"
Enabled="true" EnableTextSelection="false">
</telerik:RadComboBox>
</td>
<td>Garage Name <span class="asterix">*</span></td>
<td class="lablenobg">
<telerik:RadComboBox ID="CODE" runat="server" Width="250px" Height="200px" EnableLoadOnDemand="True"
MandatoryYesNo="true" AllowCustomText="true" CustomErrorMessage="Please Select Code">
<WebServiceSettings Method="GetList" Path="WebMethod.aspx" />
</telerik:RadComboBox>
<telerik:RadTextBox runat="server" ID="TYPE_OTH" Width="150px" ></telerik:RadTextBox>
</td>
When OTHERS selected in combo box(ID is TYPE) is selected, then TYPE_OTH should be Visible=TRUE and CODE should be Visible=FALSE
Apart from OTHERS selected in combo box(ID is TYPE) is selected, then TYPE_OTH should be Visible=FALSE and CODE should be Visible=FALSE
Above functionality i need in JAVA SCRIPT. Please help on this code.