Tiny-MCE plugin for setting the width of a column in a table

We use Tiny-MCE in our CMS, and our users would like to be able to change the width of the column in the table. Now I know that from the point of HTML there is no such “column” of entity, but in the Moodle HTMLAREA editor there is a plugin that does this - it allows you to set the width (only in percent) in the column:

enter image description here

Sorry that in Hebrew, I could not find an English version ...

Does anyone know of a Tiny-MCE plugin that could do this? Or do I have an idea how I will write such a plugin?

+3
source share
3 answers

I found the answer I was looking for. This is an improvement in the cell dialog box that adds an option to the selection box below:
enter image description here

, , , JS , . - , .

+2

HTML?:)

styleprops (edit Css Style), , , , . , !

, , , , width20percent, 20%.

+2

@Lea Cohen: TinyMCE - http://sourceforge.net/tracker/?func=detail&aid=2800315&group_id=103281&atid=738747 - , , , , :

, ..

, , , , , , .

<table>
    <tr>
        <td width="300">Col 1</td>
        <td width="200">Col 2</td>
    </tr>
    <tr>
        <td>Width 300</td>
        <td>Width 200</td>
    </tr>
</table>

, Table, , , /: http://tinymce.moxiecode.com/wiki.php/Plugin:table

+2
source

All Articles