[Webunitproj-users] WebTable.getRowCount() always returns 1
Brought to you by:
dgan
From: Brian K. <bt...@ne...> - 2003-03-25 21:45:17
|
When calling getRowCount() on the following table, isn't it supposed to return 5 or maybe even 4? But instead it's returning 1... any ideas? =20 <table id=3D"test" border=3D"1"> <thead> <tr><th>col1</th><th>col2</th><th>col3</th></tr> </thead> <tbody> <tr><td>11</td><td>21</td><td>31</td></tr> <tr><td>12</td><td>22</td><td>32</td></tr> <tr><td>13</td><td>23</td><td>33</td></tr> <tr><td>14</td><td>24</td><td>34</td></tr> </tbody> </table> |