Community
Participate
Working Groups
Build Identifier: EDT 0.7 GA build Please setup the attached projects, and open the H1.egl with VE. If you click the "Call function in handler" button, then the widget can be appended into the Box. Invoke the same logic defined in the widget, nothing happened. Reproducible: Always
Created attachment 208896 [details] The sample project.
I believe this is working as designed. function Button1_onClick(event Event in) TestWeidget TestWeidget{}; TestWeidget.test(); end The TestWeidget instance is never being appended to the document, so I would not expect its internal box to be displayed. Does the following change resolve the issue? function Button1_onClick(event Event in) TestWeidget TestWeidget{}; TestWeidget.test(); Box.appendChildren([TestWeidget]); end
Brian, you're right.Thanks. But we'll still have some test cases for test the widgets in M1 testing, because it has not been carefully tested in EDT 0.7.
Close the defect.