Hello,
I have the below code and my combobox is getting disappeared on inline javascript call, but the aspx button has no any issue.
I have the below code and my combobox is getting disappeared on inline javascript call, but the aspx button has no any issue.
<
body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />
<div>
<telerik:RadComboBox ID="ddlReportUserViews" runat="server" AutoPostBack="true" AllowCustomText="false"
AccessibilityMode="true" Skin="Outlook">
<Items>
<telerik:RadComboBoxItem Text="1" Value="1" />
<telerik:RadComboBoxItem Text="2" Value="2" />
</Items>
</telerik:RadComboBox>
<asp:Button ID="btn1" runat="server" Text="Click" OnClientClick="alert('hi');" />
<script type="text/javascript" language="javascript">
alert(
'hi');
</script>
</div>
</form>
</
body>
Thanks