TinyMCE 4 Table resize cells by dragging -
i looking tinymce plugin table resize cell dragging , came to: http://sourceforge.net/p/tinymce/plugins/163/?page=2
here there working example http://tinymcesupport.com/premium-plugins/resize-table-cells
unfortunately old version (i'm using 4) , following migration guide didn't came working version.
i'm not java programmer , don't know if migration quite simple small changes or more development necessary.
thanks
tinymce supports resizing columns its 4.3 release. enable table plugin shown:
tinymce.init({ inline: true, selector: 'table', plugins: 'table' });
table { border-collapse: collapse; } th, td { border: solid 1px #ccc; text-align: center; padding: 10px; }
<script src="//cdn.tinymce.com/4/tinymce.min.js"></script> make sure <code>table</code> plugin activated, drag columns resize them: <table style="width: 100%;"> <thead> <tr> <th>column 1</th> <th>column 2</th> <th>column 3</th> </tr> </thead> <tbody> <tr> <td>data</td> <td>data</td> <td>data</td> </tr> </tbody> </table>
Comments
Post a Comment