Hello,
 
I'm trying to insert a List in a Cell of a Table like this
 
Table table = new Table(1);
RtfCell cell = new RtfCell();
List list = List(false, 10);
list.add(new ListItem("Mon premier element));
list.add(new ListItem("Mon deuxi�me));
cell.addElement(list );
table.addCell(cell);
 
and all elements of my list are not displayed in a list but one after the other one...
 
Thanks for help
 
Laurent


Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!

Reply via email to