Hi,
I have built a portlet that contains multiple tabs.
I’m using a java arrayList to store the titles and targets of these tabs:
views = new java.util.ArrayList();
views.add(new String[] {"/Tabs/tab1.view", "tab1"+System.getProperty("line.separator")+"Search"});
views.add(new String[] {"/Tabs/tab2.view", "tab2 \n Form"});
The new lines don’t appear in the tabs, so instead of getting:
tab1 tab2
Search Form
I get
tab1Search tab2Form
Any idea how I should write this so that the new lines appear in the tabs?
Thanks a lot for your help,
Francois
#webMethods-BPMS#webMethods#MWS-CAF-Task-Engine