So how I can control the page contents loading sequence in dojo
- by David Zhao
Hi there,
I'm using dojo for our UI's, and would like to load certain part of page contents in sequence. For example, for a certain stock, I'd like to load stock general information, such as ticker, company name, key stats, etc. and a grid with the last 30 days open/close prices. Different contents will be fetched from the server separately. Now, I'd like first load the grid so the user can have something to look at, then, say, start loading of key stats which is a large data set takes longer time to load. How do I do this. I tried:
dojo.addOnLoad(function() {
startGrid(); //mock grid startup function which works fine
getKeyStats(); //mock key stat getter function also works fine
});
But dojo is loading getKeyStats(), then startGrid() here for some reason, and sequence doesn't seem be matter here. So how I can control the loading sequence at will?
Thanks in advance!
David