Option to disable loading for template repeater

can we have the option to disable the loading animation for the template repeater.

  • requested per kyle chase.

Apologies for digging up an oldie, but this is exactly what I’m looking for an answer to at the moment. Using the template repeater I built my own “Tree View” component since the built in tree view wouldn’t be able to accommodate our current needs. I have the repeater working for my needs and loading plenty fast enough (< 1 ms). The issue is any time it has to redraw the templates it briefly flashes the “Loading…” animation with a white background, which doesn’t look great. Would rather it just redrew from old view to new view.

Long story short, is disabling the loading animation possible? Or at the very least change the loading animation background and text? I could then make it less noticeable.

tr = event.source.parent.getComponent('Template Repeater')

if "LoadingPanel" in str(tr.getComponents()[0]):
	tr.remove(tr.getComponents()[0])
5 Likes