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

RadAjax with post back

1 Answer 26 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Vignesh
Top achievements
Rank 1
Vignesh asked on 26 Nov 2011, 12:38 PM
Can Any one Help me... I'm try this But the focus is Moving to page not to the next control.. so that i con't select state after selecting Country while im using in Keyboard..

<telerik:RadAjaxManager ID="ajaxManager1" runat="server" UpdatePanelsRenderMode="Block" >
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="ajaxManager1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ddlCountry" />
                    <telerik:AjaxUpdatedControl ControlID="ddlCity" />
                    <telerik:AjaxUpdatedControl ControlID="ddlState" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="ddlCountry">
            <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ddlCity" />
                    <telerik:AjaxUpdatedControl ControlID="ddlState" />
            </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="ddlState">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ddlCity" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>

1 Answer, 1 is accepted

Sort by
0
O'Man
Top achievements
Rank 1
answered on 29 Nov 2011, 06:22 PM
Hi,

I have same issue but not use telerik (see my codes). I suspect it the ajax cause issue. I will investigte more.

 <asp:UpdatePanel ID="updatePanel1" runat="server">
            <ContentTemplate>
                <asp:DropDownList runat="server" ID="Continents" AutoPostBack="true" Width="200px">
                    <asp:ListItem Text="Africa"></asp:ListItem>
                    <asp:ListItem Text="Australia"></asp:ListItem>
                     ....
                </asp:DropDownList>
                <asp:DropDownList runat="server" ID="Countries" AutoPostBack="true" Width="200px">
                    <asp:ListItem Text="Afghanistan"></asp:ListItem>
                    <asp:ListItem Text="Albania"></asp:ListItem>
                    ....
                </asp:DropDownList>
            </ContentTemplate>
        </asp:UpdatePanel>

Thnaks,
Omi
Tags
General Discussions
Asked by
Vignesh
Top achievements
Rank 1
Answers by
O'Man
Top achievements
Rank 1
Share this question
or