Hi Ralph,
this issues has been logged as WJ-7938 and is fixed in the latest dev build 1.3.24.
Best regards
Frank
Thanks, it’s a bug. For a quick easy patch, add this script to Default.html in <body>.
It patches the TabPage class overriding the destroy method.
<script> Wisej.onLoad = function () { qx.Mixin.define("MTabControlTempFix", { members: { destroy: function () { this.setParent(null); this.base(arguments); } } }); qx.Class.patch(wisej.web.tabcontrol.TabPage, MTabControlTempFix); } </script>
Please login first to submit.