Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am using d3 to edit an extension. I want to build a new extension, but I do not know what signals the code behind that a user has made a change to a setting in a side panel. For instance, if a maxValue is in the side panel, how does the code behind detect that the user changed the number?
Any tutorials or videos or answers that would show me that code would be great!
#extensionsnoob
Just write your rendering code in the paint method, using the values in the layout, and it will be called when needed.
Erik
Hi,
When the user changes a property it is sent to the engine. The layout will then be recalculated, baser in the ned property. After that then paint method will be called.
Hope this helps
Erik Wetterberg
I need CODE.
Just write your rendering code in the paint method, using the values in the layout, and it will be called when needed.
Erik