s25-hot

1.0.6 • Public • Published

Installation

$ npm install --save s25-hot

Usage

import { Hot } from 's25-hot'
//может использоваться любая версия, но тут новая
import Handsontable from 's25-hot/src/handsontable' 

const hot = new Hot(Handsontable)

hot.init(document.querySelector('.selector'), config) // стандартный hot config
hot.loadData(getData())
hot.onChange(() => $saveBtn.prop('disabled', false))

// Редактирование
$editBtn.on('click', () => {
  hot.setEditMode()
})

// Отмена
$cancelBtn.on('click', () => {
  hot.cancelEditMode()
})

// Сохранение
const changes = hot.getChanges()
save(changes)
hot.setViewMode()

Readme

Keywords

none

Package Sidebar

Install

npm i s25-hot

Weekly Downloads

0

Version

1.0.6

License

ISC

Unpacked Size

11.3 kB

Total Files

11

Last publish

Collaborators

  • mdanon