Hello,
We're having a slight issue where when a page loads it displays controls momentarily as the unstyled versions of Kendo UI controls even in development (e.g. no network latency to load resources). This seems to be a FireFox issue as Chrome is not showing the delay, but it is certainly there in FF 15.0.1.
When the page loads the controls are unstyled, then they are styled. Is it possible to hook into some Kendo or jQuery framework event to know when Kendo thinks it is done initializing and styling all Kendo controls on the page (or maybe we can look at the last control on the page and base it off that). We are wanting to prevent this flicker of unstyled to styled controls.
The style initialization we are doing is below:
$('#something).kendoNumericTextBox({
format: "n0",
spinners: false,
decimals: 0
});
We're having a slight issue where when a page loads it displays controls momentarily as the unstyled versions of Kendo UI controls even in development (e.g. no network latency to load resources). This seems to be a FireFox issue as Chrome is not showing the delay, but it is certainly there in FF 15.0.1.
When the page loads the controls are unstyled, then they are styled. Is it possible to hook into some Kendo or jQuery framework event to know when Kendo thinks it is done initializing and styling all Kendo controls on the page (or maybe we can look at the last control on the page and base it off that). We are wanting to prevent this flicker of unstyled to styled controls.
The style initialization we are doing is below:
$('#something).kendoNumericTextBox({
format: "n0",
spinners: false,
decimals: 0
});