The tabs of a tabcontrol can be placed horizontally or vertically, is it possible to hide them to change pages only programmatically?
Thanks.
Hi Jesus
I atach a sample that I hope could be useful for you
Its how to manipulate the widgets properties of tabheader using the Eval() void
this.tabPage1.Eval(“this.getButton().exclude()”);
this.tabPage1.Eval(“this.getButton().show()”);
Regards and happy coding
Thank you very much for your answer, however what I want is to hide only the upper part of the tabcontrol, where the titles of the tabs are.
I have done it by adding the Stylesheet component to my window and putting the code in it:
div.qx-widget-barTop {display: none}
but this makes it affect all the tabcontrols in the form, and I only want it to affect one.
It’s possible?
Hi Jesus,
yes, just use the Hidden property.
Find more about how Wisej extends the TabControls here:
https://wisej.com/blog/extended_tabcontrols/
Best regards
Frank
Please login first to submit.