|
|
Is there a way to force a wrap of a tab title in a tab menu java?
Return to Recent Questions
Q:
Will tab titles ever automatically wrap?
Is there a way to force a wrap of a tab title in a tab menu java?
A:
No, unfortunately, tab menu cannot wrap item text automatically.
But you can use tag within item text, for example
var bmenuItems = [
["Item 1 text <br> text text text <br> text text text ","", "", "", "", "", "", "", "", ],
["Item 2","", "", "", "", "", "", "", "", ],
["Item 3","", "", "", "", "", "", "", "", ],
];
Return to Recent Questions
|