Click here to Skip to main content
15,896,726 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Actually i am taking a telerik_radgrid in upadate panel in that telerik_radgrid i am taking a form in that one telerik:RadComboBox is available. to this telerik:RadComboBox i am binding the groups when i ever i clicked the particular group i am raising an event OnSelectedIndexChanged="CmbUGrp_SelectedIndexChanged" so my problem is when ever this event raised i want to show the loading symbol on my page till the event complete is it possible. if needed i will post my code.
Posted
Updated 10-May-13 0:38am
v2

1 solution

Use UpdateProgress along with UpdatePanel.For more detail please go througn this link
http://asp-net-example.blogspot.in/2009/11/ajax-updateprogress-image-how-to-use.html[^]

Hope this helps
 
Share this answer
 
Comments
ntitish 10-May-13 6:02am    
//Sir if u dont mind can u help me by seeing this code

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<ajaxsettings>
<telerik:ajaxsetting ajaxcontrolid="rgdUsrManager" xmlns:telerik="#unknown">
<updatedcontrols>

</updatedcontrols> </telerik:ajaxsetting>



//In the above i am putting telerik grid in update panel. actually my telerik:radcombobox also in that grid only when ever i select the group in that combobox i want to show the symbol telerik:radcombobox code is below



<telerik:RadComboBox runat="server" ID="CmbUGrp" Width="150px" Skin="Windows7"
DropDownWidth="200px" Height="200px" AutoPostBack="true" CausesValidation="false"
SelectedValue='<%# Eval("GroupID") %>' DataSourceID="DS_Groups" DataTextField="GroupName" DataValueField="GroupID"
AppendDataBoundItems="true" önSelectedIndexChanged="CmbUGrp_SelectedIndexChanged">
<items>
<telerik:radcomboboxitem value="" text="" xmlns:telerik="#unknown">

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900