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

Changing text of the Loading popup

1 Answer 114 Views
Application
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 05 Jul 2012, 01:26 AM
I need to change the text of the loading popup. I have tried the following configuration:

<script>
     
new kendo.mobile.Application($(document.body), {
         loading
: "myNewLoadingText"
     
});
</script>

but then I specify a 'loading' parameter, the popups omit the text completely. Is the above code incorrect or is this a bug with Kendo UI? 

1 Answer, 1 is accepted

Sort by
0
Accepted
Iliana Dyankova
Telerik team
answered on 06 Jul 2012, 08:41 AM
Hi John,

Thank you for pointing our attention to this issue - indeed there is a mistake in the topic from our documentation which contains the configuration of the loading text. Actually, the loading template text should be enclosed in an <h1> tag. Like this: 

<script>
  window.kendoMobileApplication = new kendo.mobile.Application($(document.body),
    {loading: "<h1>myNewLoadingText</h1>"}
  );
</script>

We will update this topic from our documentation shortly. As a sign of gratitude I updated your points. 


Regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Application
Asked by
John
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or