Translation Bugs and question how to hide "tabs-header-area"

Answered
0
0

Hi,

there are two translation errors in the TabControl – see the attached files.

 

And I have a question regarding the TabControl:

We want to implement a complex survey in our WiseJ-application.

So the best way for this is to use the TabControl with UserControls.

But in your TabControl there is no possibility to hide the “tabs-header-area” (see image).

I want to change the selected tab only per code and not per UI.

Is there any chance to implement this feature?

 

Kind Regards,

Jan

  • You must to post comments
Best Answer
2
0

Hi Jan,

thanks for reporting the translation issues. They will be addressed with the next release.

For the TabControl you have several options:

  1. If you like to use a more modern, wizard style interface you could reuse some code we created for a customer request:

tabwizard

(source code is attached)

2. If you want to keep the header but make it selectable only by code (not by clicking on it) you can use (for each page):

tabPage1.Eval("this.getButton().setEnabled(false)")

3. Finally if you still want to hide the tab control header you have 2 options:

a) Hide it but keep the space reserved for it (keep it in the layout):

this.tabControl1.Eval("this.getChildControl('bar').hide()");

b) Hide it and reuse the space (exclude it from the layout)

this.tabControl1.Eval("this.getChildControl('bar').exclude()");

Best regards
Frank

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.