Insert table button in bootstrap-wysiwyg

2.7k Views Asked by At

I have an HTML editor based on bootstrap-wysiwyg on which I'd like to add a Insert table button. According to what stated in issue #17 it should be possible to do this using an insertHtml call. So I tried adding a row like this:

<a class="btn" data-edit="insertHTML" value="<table><tr><td>Val1</td><td>Val2</td></tr></table>"><i class="icon-table"></i></a>

but doesn't work...

1

There are 1 best solutions below

1
On BEST ANSWER

I tried much, but finally found the solution to this:

<a class="btn" data-edit="insertHTML <table><tr><td>Val1</td><td>Val2</td></tr></table>" ><i class="icon-table"></i></a>

Hope it fits for you.