taoguan / jwysiwyg

Automatically exported from code.google.com/p/jwysiwyg
0 stars 0 forks source link

can't add a table #162

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
how do i add a table to the toolbar? there is a table-image @
jquery.wysiwyg.gif.. but how to add?

Original issue reported on code.google.com by jasperko...@gmail.com on 22 Feb 2010 at 10:33

GoogleCodeExporter commented 8 years ago
Programatically:

$('#wysiwyg').wysiwyg({
    controls: {
      insertTable3x3 : { visible: true, exec: function()
      {
         this.insertHtml('<table><legend>Sample 
table</legend><tbody><tr><td></td><td></td><td></td></tr><tr><td></td><td></td><
td></
td></tr><tr><td></td><td></td><td></td></tr></tbody></table>');
      }}
    }
  });

Original comment by akzhan.a...@gmail.com on 24 Feb 2010 at 10:13

GoogleCodeExporter commented 8 years ago
checkout the last git version of plugin, already suppor tables

http://github.com/akzhan/jwysiwyg

Original comment by serg...@gmail.com on 31 Mar 2010 at 7:09

GoogleCodeExporter commented 8 years ago

Original comment by akzhan.a...@gmail.com on 7 Apr 2010 at 4:38