Tabpage Remove Error

0
0

When closing a tabpage with the close-button i get the following error:

Remove Error: wisej.web.tabcontrol.TabButton[437-1] is not a child of this widget!

  • You must to post comments
0
0

Hi Ralph,

this issues has been logged as WJ-7938 and is fixed in the latest dev build 1.3.24.

Best regards
Frank

  • You must to post comments
0
0

Worked !

Thank you Luca

 

 

  • You must to post comments
0
0

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>

 

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.