my code below.
no loading is shown - I have min time = 14 seconds
no alert is ever called
my grid I create and bind with code behind.
why is the loading panel not showing? what am I missing
is there a way for me to explicit call the show loading?
no loading is shown - I have min time = 14 seconds
no alert is ever called
my grid I create and bind with code behind.
why is the loading panel not showing? what am I missing
is there a way for me to explicit call the show loading?
function
requestStart(sender, eventArgs) {
alert(
'Request start initiated by: '
+ eventArgs.get_eventTarget());
}
<telerik:RadAjaxLoadingPanel runat=
"server"
ID=
"LoadingPanel1"
MinDisplayTime=
"14000"
Skin=
"Default"
Modal=
"true"
>
<asp:Label ID=
"Label2"
runat=
"server"
ForeColor=
"Red"
>Loading... </asp:Label>
<asp:Image ID=
"Image1"
runat=
"server"
Width=
"224px"
Height=
"48px"
ImageUrl=
"/colors.png"
></asp:Image>
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxManager ID=
"RadAjaxManager1"
runat=
"server"
>
<ClientEvents OnRequestStart=
"requestStart"
/>
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID=
"gv"
>
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID=
"gv"
LoadingPanelID=
"LoadingPanel1"
/>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadGrid RenderMode=
"Lightweight"
ID=
"gv"
runat=
"server"
AutoGenerateColumns=
"false"
CellSpacing=
"1"
EnableViewState=
"true"
/>