I have a RadComboBox, Rad Grid and a asp.net button on a web page.
The combobox's selected value is a parameter for the SQLdatasource used in the radgrid.
Properties set on the combobox are all default except:
Autopostback = true
Skin = office2007
<telerik:RadComboBox ID="RadComboBox1" runat="server" AutoPostBack="True" Skin="Office2007">
<Items>
<telerik:RadComboBoxItem runat="server" Text="One" Value="1" />
<telerik:RadComboBoxItem runat="server" Text="Two" Value="2" />
<telerik:RadComboBoxItem runat="server" Text="Three" Value="3" />
</Items>
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadComboBox>
The button has custom code, not the radgrid export, that exports data to Excel.
The code on the button doesn't refer to the combobox at all.
The combobox works fine until you click on the button.
After the button is clicked, combobox will not drop down until you refresh the page. After the refresh, it works fine.
Is there a fix for this to work without the refresh?
The combobox's selected value is a parameter for the SQLdatasource used in the radgrid.
Properties set on the combobox are all default except:
Autopostback = true
Skin = office2007
<telerik:RadComboBox ID="RadComboBox1" runat="server" AutoPostBack="True" Skin="Office2007">
<Items>
<telerik:RadComboBoxItem runat="server" Text="One" Value="1" />
<telerik:RadComboBoxItem runat="server" Text="Two" Value="2" />
<telerik:RadComboBoxItem runat="server" Text="Three" Value="3" />
</Items>
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadComboBox>
The button has custom code, not the radgrid export, that exports data to Excel.
The code on the button doesn't refer to the combobox at all.
The combobox works fine until you click on the button.
After the button is clicked, combobox will not drop down until you refresh the page. After the refresh, it works fine.
Is there a fix for this to work without the refresh?