Line break in ADF?
Hello, my question is simple but I can´t seem to figure it out. I have the following in my adf page:
<af:panelGroupLayout>
<af:navigationPane hint="list" ..>
<af:commandNavigationItem text="Link to dashboard 1"...>
<af:commandNavigationItem text="Link to dashboard 2"...>
</af:navigationPane>
</af:panelGrouLayout>
This generates a html table with links in each row, surrounded by a div:
Link to dashboard 1
Link to dashboard 2
I want to limit the size of my table, so the list looks like this:
Link to
dashboard1
Link to
dashboard2
How can I achieve this? I tried altering the css table width and div width, but I can´t get the line to break. I also tried to insert a <.br.> (without the dots hehe) inside the text tag, but it doesn´t recognize it as a tag. Thank you, I hope I´m clear!
Edited by: John Moras on 29/07/2010 07:47