You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
When InputView is executing layout/update it always creates PropertyArray if it doesn't exist, and then immediately attaches it to the parent property set. This immedialtely makes 'layouted' property set differ from persisted one and requires extra efforts to calculate if data has really changed or not.
Solution:
If property array for InputView is missing in the parent property set then create it but don't attach to parent
When data in this newly created property array added/modified then attach it to the parent prop set
When new property array has no data then detach it. When existing non empty prop array becomes empty also detach it so it is removed on save
Potential issues to deal with:
-order of arrays in the parent's prop set
-default values in arrays
The text was updated successfully, but these errors were encountered:
Problem:
When InputView is executing layout/update it always creates PropertyArray if it doesn't exist, and then immediately attaches it to the parent property set. This immedialtely makes 'layouted' property set differ from persisted one and requires extra efforts to calculate if data has really changed or not.
Solution:
Potential issues to deal with:
-order of arrays in the parent's prop set
-default values in arrays
The text was updated successfully, but these errors were encountered: