This is a migrated thread and some comments may be shown as answers.

RadAjaxManager issue

2 Answers 69 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
usr9999
Top achievements
Rank 1
usr9999 asked on 29 Jul 2010, 09:12 PM
I am using RADAjaxManager in my page. I am having issues with it.
I have RadComboBox1, RadComboBox2, RadComboBox3, RadTextBox1 and RadTexBox2 on the page. I have the functionality built in as follows. Now I am trying to use the RADAjaxManager which is breaking the functionality. 
    1) ComboBox1 has 2 values.
    2) When user selects value 1 from the ComboBox1
        a. ComboBox3 should be disabled
        b. Clear text1 and text2 and disable them
        c. ComboBox2 should be populated from database 
        d. When user selects a value from combobox2 , assign values to text1 and text2  
    3) When user selects value 2 from the ComboBox1
        a. ComboBox2 should be disabled
        b. Clear text1 and text2 and enable them for data entry
        c. ComboBox3 should be populated from database

The functionality is working well until I add the following entries. It looks like the clearing text boxes are not being done

<telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
   <AjaxSettings>
<telerik:AjaxSetting AjaxControlID=" RadComboBox1">
         <UpdatedControls>
           <telerik:AjaxUpdatedControl ControlID=" RadComboBox2" />
           <telerik:AjaxUpdatedControl ontrolID=" RadComboBox3" />
            <telerik:AjaxUpdatedControl ControlID="RadTextBox1" />
            <telerik:AjaxUpdatedControl ControlID="RadTextBox2" />
           
         </UpdatedControls>
      </telerik:AjaxSetting>
      <telerik:AjaxSetting AjaxControlID=" RadComboBox2">
          <UpdatedControls>
             <telerik:AjaxUpdatedControl ControlID="RadTextBox1" />
             <telerik:AjaxUpdatedControl ControlID="RadTextBox2" />
          </UpdatedControls>
      </telerik:AjaxSetting>
    <AjaxSettings>
 </telerik:RadAjaxManager>

Note sure where i am going wrong! Please help.

2 Answers, 1 is accepted

Sort by
0
Accepted
Maria Ilieva
Telerik team
answered on 03 Aug 2010, 12:59 PM
Hello,

Could you please wrap all these control into single RadAjaxPanel and verify if the issue still persists and if this makes any difference.


Sincerely yours,
Maria Ilieva
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
usr9999
Top achievements
Rank 1
answered on 03 Aug 2010, 03:42 PM
Yes,  It did help!. Thank you for the help.
Tags
Ajax
Asked by
usr9999
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
usr9999
Top achievements
Rank 1
Share this question
or