Hi,
What is the best way to go about initializing many kendoUI widgets on a single page without the browser flashing the code html before rendering the widget?
Below is a simplification of my page structure.
thanks in advance,
Grant
<
html
>
<
head
>
<!-- Script imports -->
<
script
type
=
"text/javascript"
>
$(function() {
//1. Initialize Grid DataSource
//2. Initialize Grid
//3. Initialize view Window
//4. Initialize form Window
//5. Initialize 3-4 buttons
//6/ Initialize kendo validator
});
</
script
>
</
head
>
<
body
>
<
div
id
=
"grid"
></
div
>
<
div
id
=
"window-view"
></
div
>
<
div
id
=
"window-form"
></
div
>
</
body
>
</
html
>