Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Table Plugin for grapesjs.

License

NotificationsYou must be signed in to change notification settings

Anubhavjain786/grapesjs-table

Repository files navigation

NPM versionNPM downloadsTravis buildChat DiscordGitHub issuesdependencies statusdevDependencies status

DEMO

Requirements

- GrapesJS v0.13.8 or higher

HTML

<linkhref="https://unpkg.com/grapesjs/dist/css/grapes.min.css"rel="stylesheet"/><scriptsrc="https://unpkg.com/grapesjs"></script><scriptsrc="https://unpkg.com/grapesjs-table"></script><divid="gjs"></div>

JS

consteditor=grapesjs.init({container:"#gjs",height:"100%",fromElement:true,storageManager:false,plugins:["grapesjs-table"],});

CSS

body,html {margin:0;height:100%;}

Summary

  • Plugin name:grapesjs-table
  • Components
    • table - Main table component
    • tablebody - Component which contains table body
    • tableFooter - Component which contains table footer
    • tableHead - Component which contains table header
  • Blocks
    • table

Options

OptionDescriptionDefault
tableBlockObject to extend the default table block, eg.{ label: 'table', attributes: { ... } }
tablePropsObject to extend the default table properties, eg.{ name: 'My table', droppable: false, ... }{}
bodyPropsObject to extend the default table body properties{}
headPropsObject to extend the default table head properties{}
footerPropsObject to extend the default table footer properties{}
attrTableTable attribute identifier (main component)data-table
attrTableBodyTable body attribute identifierdata-tbody
attrTableFooterTable footer attribute identifierdata-tfoot
attrTableHeaderTable Head attribute identifierdata-thead
classTableDefault class to use on tabletable
classTableBodyDefault class to use on table bodytable-body
classTableFooterDefault class to use on table body footertable-footer
classTableHeaderDefault class to use on table body headertable-header
styleDefault style for table table { .... (check the source)

Download

  • CDN
    • https://unpkg.com/grapesjs-table
  • NPM
    • npm i grapesjs-table
  • GIT
    • git clone https://github.com/anubhavjain786/grapesjs-table.git

Usage

Directly in the browser

<linkhref="https://unpkg.com/grapesjs/dist/css/grapes.min.css"rel="stylesheet"/><scriptsrc="https://unpkg.com/grapesjs"></script><scriptsrc="path/to/grapesjs-table.min.js"></script><divid="gjs"></div><scripttype="text/javascript">vareditor=grapesjs.init({container:"#gjs",// ...plugins:["grapesjs-table"],pluginsOpts:{"grapesjs-table":{/* options */},},});</script>

Modern javascript

importgrapesjsfrom'grapesjs';importpluginfrom'grapesjs-table';import'grapesjs/dist/css/grapes.min.css';consteditor=grapesjs.init({container :'#gjs',// ...plugins:[plugin],pluginsOpts:{[plugin]:{/* options */}}// orplugins:[editor=>plugin(editor,{/* options */}),],});

Development

Clone the repository

$ git clone https://github.com/anubhavjain786/grapesjs-table.git$cd grapesjs-table

Install dependencies

$ npm i

Start the dev server

$ npm start

Build the source

$ npm run build

License

MIT


[8]ページ先頭

©2009-2025 Movatter.jp