react-summernote icon indicating copy to clipboard operation
react-summernote copied to clipboard

Insert Row or Column into Table not available in react-summernote.

Open amarendhar opened this issue 6 years ago • 1 comments

Insert Row or Column into Table not there in react-summernote.

But it's available in latest version of summernote-0.8.9. Please refer http://jsfiddle.net/XavD/59renkv7/ to check the availability.

Can we have it in 'react-summernote' as well plz ?

amarendhar avatar Oct 17 '18 08:10 amarendhar

It works on mine...

I just added this to my toolbar: ['table', ['table']],

options={{
   minHeight: 400,
   maxHeight: null,

   dialogsInBody: true,
   toolbar: [
      ['style', ['style']],
      ['font', ['bold', 'underline', 'italic']],
      ['font', ['strikethrough', 'superscript', 'subscript']],
      ['fontsize', ['fontsize']],
      ['color', ['color']],
      ['fontname', ['fontname']],
      ['para', ['ul', 'ol', 'paragraph']],
      ['table', ['table']],
      ['insert', ['link', 'picture']],
      ['view', ['fullscreen', 'codeview']]
   ]
}}

iChaosren avatar Jan 08 '19 17:01 iChaosren