Hi!
I have a few Lists on different pages (all in the same carousel). Since its a mobile app I set growing to true and growing threshold to 5. Now I want to "grow" all Lists when the updateStarted or updateFinished event is called. Whats the best way to do so?
sth like this
updateFinished: function(event) { for (var i = 0; i < arrayTables.length; i++) { if (event.getSource() != arrayTables[i]) { //? } } },
Thanks in advance,
Julian