I wants to using JavaFX to implement a table that need a rowspan effect like in html. But I can't find it. Can anybody tell me. Appreciate it very much.
I know JavaFX have a nested column function, but what's about rowspan?
html code:
<html>
<body>
<table width="100%" border="1">
<tr>
<th>Month</th>
<th>Savings</th>
<th>Savings for holiday!</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
<td rowspan="2">$50</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
</body>
</html>
{code}
Edited by: Owen on May 20, 2012 12:10 AM