Skip to Content
0
Former Member
Jan 22, 2014 at 05:00 PM

Growing on multiple Lists/Tables with one click

47 Views

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