Hyden tabs in tabControl

Answered
0
0

The tabs of a tabcontrol can be placed horizontally or vertically, is it possible to hide them to change pages only programmatically?

Thanks.

  • You must to post comments
Best Answer
0
0

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

 

  • Jesús Sanz
    Thank you very much for your time, in the end I have solved it by modifying the theme, since I wanted to hide the entire tab bar and that it was hidden both in development and in execution.
  • You must to post comments
0
0

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?

  • You must to post comments
0
0

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

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.