vote up 0 vote down star

Hi I'm using telerik rad controls for asp.net I have to clear the inputs with javascript; but telerik controls (radcombobox e.g.) generates a huge markup so how to clear telerik controls on a page in client-side?

thnx

flag

0% accept rate
Did you look in the documentation? – John Saunders Jul 2 at 13:35
yes but no sample like the question:( – dankyy1 Jul 2 at 13:42
what do you mean by "clear" RadComboBox? It is not rendered as an input. – Genady Sergeev Jul 2 at 14:16
yes i wanna clear radcombobox,raddatepicker e.g..... all controls in page(for example for radcombobox setting index 0 ) – dankyy1 Jul 2 at 14:50

2 Answers

vote up 1 vote down

I have very simple working example. I hope this would give you some ideas on how to proceed. I have done some clearing for the textboxes.

 <Items>
        <telerik:RadComboBoxItem Text="Oragnes" Value="1" />
 </Items>
 <Items>
        <telerik:RadComboBoxItem Text="Apples" Value="2" />
 </Items>
 <Items>
        <telerik:RadComboBoxItem Text="Bananas" Value="" />
 </Items>

</telerik:RadComboBox>
  &nbsp;
<telerik:RadTextBox ID="rdTextBox" runat="server" ></telerik:RadTextBox>
&nbsp;
<telerik:RadTextBox ID="RadTextBox1" runat="server" ></telerik:RadTextBox>
&nbsp;
<telerik:RadTextBox ID="RadTextBox2" runat="server" ></telerik:RadTextBox>
      <br />
<input type="button" onclick="ClearRadControls()" value="Clear Rad Controls" />

<script language="javascript" type="text/javascript">

function   ClearRadControls()
{
    var radControl1TextBox = document.getElementById("<%=rdTextBox.ClientID  %>" + "_text");
    var RadTextBox1 = document.getElementById("<%=RadTextBox1.ClientID  %>" + "_text");
    var RadTextBox2 = document.getElementById("<%=RadTextBox2.ClientID  %>" + "_text");
    radControl1TextBox.value   = '';
    RadTextBox1.value = "";
    RadTextBox2.value = "";
}

</script>
link|flag
thnx but ,that's not what i'm looking for...in my pages i generate radcontrols on the fly and don't know how much rad control it has...i need a generic clear way like standart html controls – dankyy1 Jul 3 at 11:51
vote up 0 vote down

This could be off topic but the JS framework Dojo could be of help . See this code I use to uncheck all my checkboxes. These controls are all generated on the fly.

> // Uncheck the children
>   				dojo.forEach(
>   					dojo.query("input[type='checkbox']",
> subList),
>   					function(checkboxTag) {
>   						checkboxTag.checked = false;
>   					}
>   				);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.