Insert Excel spreadsheet in TinyMCE while saving format

Is there a TinyMCE plugin that allows you to insert a table from MS Excel, while also maintaining the format of this table?

Partial solution : Thus, using the paste plugin, you can insert an Excel spreadsheet into Word, and then paste it from Word into TinyMCE, which formats it correctly. This is not perfect, but better than nothing. Still hoping someone has a better solution.

+5
source share
3 answers

You might want to check out the plugin for insertion . This plugin must be configured correctly. look here for documentation.

: :

    paste_preprocess : function(pl, o) {
        console.log('Object', o);
        console.log('Content:', o.content);
   }
+2

, , , MS Excel, .

0

Paste Excel data into TinyMCE formatted editor,

Please refer: Paste Excel data in TinyMCE with formatting

Hope this helps you.

0
source

All Articles