Community
Participate
Working Groups
Add the following to the gallery sample in the <with> directive: <hint> <name>style</name> <value>drop.down.list</value> </hint> Change selection from "Child element" to "child element with integer" and notice that "none" is selected temporarily creating a flicker. This is more noticeable in my page probably because there are more content.
I was not able to see the flicker, but I saw the problem in the debugger. In the model API, changing element property's child element type from one to another was treated as a sequence of two events delete + add. Modified the code to make sure that only one event is sent. Please verify.
Verified. Thanks!