cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

Select layout in tab programmatically_Creating UI

VladiSlav
17-Peridot

Select layout in tab programmatically_Creating UI

Hello everyone!

 

Please tell me how can I select layout in tab programmatically.
I tried the methods SetVisible(true), SetEnabled(true), SetFocusOnDisplay(true) and so on (I use OTK Java, But it doesn’t matter, understanding is important, I think).
But nothing came of it.
Thank you in advance!


Regards!

1 ACCEPTED SOLUTION

Accepted Solutions

Found the answer in the examples:

Tab serverCacheTab = uifcTab.TabFind(OTKServerRegistryDialog.OTK_SERVER_DIALOG ,"server_cache_tab");
stringseq selNames = stringseq.create();
selNames.append("server_lay");
serverCacheTab.SetSelectedItemNameArray(selNames);

View solution in original post

1 REPLY 1

Found the answer in the examples:

Tab serverCacheTab = uifcTab.TabFind(OTKServerRegistryDialog.OTK_SERVER_DIALOG ,"server_cache_tab");
stringseq selNames = stringseq.create();
selNames.append("server_lay");
serverCacheTab.SetSelectedItemNameArray(selNames);
Top Tags