Hello,
I am working on a project with a RadGrid.
When the user clicks on a button, a JavaScript function shows the RadAjaxLoadingPanel.
The surface becomes gray, but I don’t see the loading-Img.
It’s seems it located off-screen. [See Video]
Code:
How do I control the position of the rotating loading-Img?
Thanks,
Daniel.
I am working on a project with a RadGrid.
When the user clicks on a button, a JavaScript function shows the RadAjaxLoadingPanel.
The surface becomes gray, but I don’t see the loading-Img.
It’s seems it located off-screen. [See Video]
Code:
</
telerik:RadScriptManager
>
<
telerik:RadCodeBlock
ID
=
"RadCodeBlock1"
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function loadajax() {
var loadingPanel = $find("<%= RadAjaxLoadingPanel1.ClientID %>");
var grid = $find("<%= RadGrid1.ClientID%>").get_masterTableView();
loadingPanel.show(grid.get_id());
}
</
script
>
</
telerik:RadCodeBlock
>
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
</
telerik:RadAjaxManager
>
<
div
>
<
telerik:RadButton
ID
=
"RadButton1"
runat
=
"server"
Text
=
"RadButton"
OnClientClicking
=
"loadajax"
>
</
telerik:RadButton
><
br
/>
<
telerik:RadAjaxLoadingPanel
ID
=
"RadAjaxLoadingPanel1"
runat
=
"server"
Skin
=
"Default"
>
</
telerik:RadAjaxLoadingPanel
>
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
>
</
telerik:RadGrid
>
</
div
>
How do I control the position of the rotating loading-Img?
Thanks,
Daniel.