I have a window with 3 tabs, whenever any of the elements on the 2nd and 3rd are used it jumps back to the first tab. any thoughts?
This is a sign that you have violated the cardinal rule of using Set to make any dynamic changes to your elements. You are likely causing the UI to reflow by feeding the results of element value listeners our other dynamically generated content into a Create element component.
Make sure you are using Set components to update any elements that need to be modified dynamically.
Cheers,
Marc
1 Like
ok, thanks for the response.