This is a migrated thread and some comments may be shown as answers.

Waiting Cursor in RadEditor

1 Answer 54 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Jiten
Top achievements
Rank 1
Jiten asked on 23 Dec 2014, 12:02 PM
Hello,
  I am looking the waiting cursor when data binding in radeditor like same waiting cursor in radgrid control.
This is the basic requirement of all clients when click in refresh button to binding string data. RadEditor should have feature to identify something is processing.
This is confusing to user if large content.
If you have this feature, please explain to me.


I hope you will help me to find this solution.
Thanks.

1 Answer, 1 is accepted

Sort by
0
Misho
Telerik team
answered on 24 Dec 2014, 02:43 PM
Hello,

You could obtain this behavior using RadAjaxLoadingPanel.
Here is a sample showing this approach:

<form id="form1" runat="server">
        <asp:ScriptManager runat="server"></asp:ScriptManager>
<telerik:RadAjaxLoadingPanel ID="loadingPanel1" runat="server" Skin="Default" MinDisplayTime="500">
    </telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxManager ID="RadAjaxManager2" runat="server">
    <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="Button1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" LoadingPanelID="loadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
</telerik:RadAjaxManager>
<asp:Button ID="Button1" runat="server" Text="AJAX" OnClick="Button1_Click" /><br />
<br />
            <asp:Panel ID="Panel1" runat="server" Width="1000px" Height="600px" BorderStyle="Dotted">
                <telerik:RadEditor Id="RadEditor1" runat="server">
                    <Content>
                        Initial Content
                    </Content>
                </telerik:RadEditor>
            </asp:Panel>
 
        <script runat="server">
            protected void Button1_Click(object sender, EventArgs e)
            {
                System.Threading.Thread.Sleep(3000);
                RadEditor1.Content += " Test";
            }
         
        </script>
    </form>

I hope that helps.

Best Regards,
Misho
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Editor
Asked by
Jiten
Top achievements
Rank 1
Answers by
Misho
Telerik team
Share this question
or