jquery - colResizable can use in nested table? -
so,like title, colresizable can use in nested table or miss something? don't work when called .colresizable().
$(document).ready(function () { $("#dynamictable").colresizable({ livedrag:true, gripinnerhtml:"<div class='grip'></div>", draggingclass:"dragging", resizemode:'fit' }); });
this body
<table style="width: 100%; margin-left: auto; margin-right: auto; border-spacing: 0"> <tr> <td></td> </tr> <tr> <td style="border-left: 1px solid silver; border-right: 1px solid silver; vertical-align: top; height: 800px"> <table id="dynamictable" style="width: 100%;"> <tr> <td> testing 1 </td> <td> <table style="width: 100%"> <tr> <td> testing 2 </td> </tr> </td> <td> testing 3 </td> </tr> </table> </td> </tr> </table>
i googled 1 day , found nothing useful me. please let me known if have advice why dont work.thanks.
Comments
Post a Comment