hello every one! please help me. in thi s situation, i have table with full data (from api) and some rows has nested table(thats eddition info). I am using DataTable. but it is not working with nested table ? and how can I get data nested child?
*
* <table id="example" class="table table-striped table-inverse table-bordered table-hover" cellspacing="0" width="100%">
* <thead>
* <tr>
* ............
* </tr>
* </thead>
*
* <tbody>
* <tr>
* <td>Tiger Nixon</td>
* <td>System Architect</td>
* <td>Edinburgh</td>
* <td>61</td>
* <td>2011/04/25</td>
* <td><table>
* .............
* </table>
* </td>
* </tr>
* .........
* .........
* <td>Tiger Nixon</td>
* <td>System Architect</td>
* <td>Edinburgh</td>
* <td>61</td>
* <td>2011/04/25</td>
* <td>2123123</td>
* </tbody>
* </table>
*
* <script type="text/javascript">
* $(document).ready(function() {
* $('#example').DataTable({
*
*
*
* });
* });
* </script>
*