I have an issue in jquery mobile table.
i want to acheive the result like
which i got from the Plain HTML code
HTML
<table border="1">
<tr>
<td>Rank</td>
<td>1941
<table border="1">
<tr>
<td>Rank</td>
<td>1941</td>
</tr>
</table>
</td>
</tr>
</table>
i want to achieve the same using jquery mobile table using data-role="table", data-mode="reflow". When i did the same,
<table data-role="table" id="my-table-next" data-mode="reflow" border="1">
<thead>
<tr>
<th>Rank</th>
</tr>
</thead>
<tbody>
<tr>
<td>1941
<table data-role="table" id="my-table-second" data-mode="columntoggle" border="1">
<thead>
<tr>
<th>Rank</th>
</tr>
</thead>
<tbody>
<tr>
<td>1941</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
i resulted in :
was expecting the result as shown in the first image,
Please help me in this issue
Thanks in advance Ravi.M