-
Bug
-
Resolution: Fixed
-
Normal
-
6.5.0, 6.5.1
-
None
-
all
Panel in Portallayout will not able to move after updated.
The following code is an example, it is movable before rename, but not after.
<div> <button id="btn" label="Rename" onClick="onClick()"/> <textbox id="tbx" /> <portallayout> <portalchildren> <panel id="panel" title="Change Me" border="normal"> <panelchildren> <div style="display:block;" width="400px" height="300px"/> </panelchildren> </panel> </portalchildren> </portallayout> <zscript> public void onClick() { panel.setTitle(tbx.getValue()); } </zscript> </div>