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

No postback on loading

1 Answer 77 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Ciupaz
Top achievements
Rank 2
Veteran
Ciupaz asked on 22 Jul 2020, 05:02 PM

Hello,

in my aspx page I have 3 combobox.

The First, the only one enabled, shows States. When the user select one state, the other 2 combo read the database and select cities and clients from that state.

At the moment I reload the page when the search take place.

Is It possible to avoid the page reloading?

 

Luigi

1 Answer, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 23 Jul 2020, 07:32 AM

Hi Ciupaz,

You can avoid the reloading of the whole page by wrapping the ComboBoxes into RadAjaxPanel, or adding AjaxManager on the page.

        <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
            <telerik:RadComboBox ID="RadComBobox1" runat="server"></telerik:RadComboBox>
            <telerik:RadComboBox ID="RadComBobox2" runat="server"></telerik:RadComboBox>
            <telerik:RadComboBox ID="RadComBobox3" runat="server"></telerik:RadComboBox>
        </telerik:RadAjaxPanel>

Regards,
Vessy
Progress Telerik

Tags
ComboBox
Asked by
Ciupaz
Top achievements
Rank 2
Veteran
Answers by
Vessy
Telerik team
Share this question
or