Completed
Last Updated: 17 Mar 2015 15:52 by ADMIN
Completed
Last Updated: 17 Mar 2015 15:50 by ADMIN
Completed
Last Updated: 17 Mar 2015 14:55 by David
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
3

			
Completed
Last Updated: 17 Mar 2015 14:51 by ADMIN
Completed
Last Updated: 17 Mar 2015 14:43 by ADMIN
Completed
Last Updated: 17 Mar 2015 14:38 by Steven Webster
ADMIN
Created by: Slav
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 17 Mar 2015 14:34 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 17 Mar 2015 14:32 by ADMIN
Completed
Last Updated: 17 Mar 2015 13:47 by ADMIN
Completed
Last Updated: 17 Mar 2015 13:39 by ADMIN
Completed
Last Updated: 17 Mar 2015 13:37 by ADMIN
Declined
Last Updated: 17 Mar 2015 13:30 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 17 Mar 2015 13:24 by ADMIN
Completed
Last Updated: 17 Mar 2015 12:51 by peter
Completed
Last Updated: 17 Mar 2015 12:44 by Dustin
Declined
Last Updated: 17 Mar 2015 12:37 by Elena
ADMIN
Created by: Teodor
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 17 Mar 2015 12:19 by ADMIN
Completed
Last Updated: 17 Mar 2015 12:02 by ADMIN
Completed
Last Updated: 17 Mar 2015 11:37 by ADMIN
ADMIN
Created by: Slav
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Declined
Last Updated: 17 Mar 2015 11:28 by Elena
Created by: Rigel
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
I am developing a web application in which i m facing problem of dropdown residing inside user control is not updated.

Overview of Entire Problem.
As per my and client's requirement:
I've created two user control.
One user control having a drop down.
Another user control having few no of controls and its event.

Both user control i've used in my one web page twice.

For partial postback use following AjaxSettings.

 <telerik:RadAjaxManager ID="RadAjaxManager1" DefaultLoadingPanelID="RadAjaxLoadingPanel1"
        runat="server">
  <AjaxSettings>
 <telerik:AjaxSetting AjaxControlID="btnSave">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="FilterDropDown" />
                    <telerik:AjaxUpdatedControl ControlID="FilterDropDownGridContact" />
                </UpdatedControls>
            </telerik:AjaxSetting>
</AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
    </telerik:RadAjaxLoadingPanel>

Now concentrate here,
btnSave is asp server side button residing inside in second user control.
And as I told both user control i've used in my same page twice.
FilterDropDown and FilterDropDownGridContact is two user control.(having only a drop down)
Now when I click on btnSave of first user control event fires and as per ajax setting dropdown user control updates.

But, when I click on btnSave of second user control events fires but user control is not updated.

So, Whats issue??

Is there any way, so that i can update ajax setting such as update first user control when respective user control's btnSave fires and so on.