Handsontable-developer guide-setting Options,callback

Source: Internet
Author: User

1. Cell array

Cell: [{row:0, col:0, readonly:true}]

2. Cells function

Cells:function (Row, col, prop) {var cellproperties = {};if (row = = = 0 && Col = = = 0) {cellproperties.readonly = true; }return cellproperties;}

3, concatenation settings: The first column can be edited; the first row and the other are read-only.

Readonly:true,columns: [  {readonly:false}, {  },  {}],cells:function (row, col, prop) {  var Cellproperties = {}  if (row = = = 0 && Col = = = 0) {    cellproperties.readonly = true;  }  return cellproperties;}

4. Series Configuration Model

Constructornew handsontable (document.getElementById (' example '), {  option: ' Value '});//columnsnew Handsontable (document.getElementById (' example '), {  columns: {    option: ' Value '}  });//cellsnew Handsontable (document.getElementById (' example '), {  cells:function (row, col, prop) {  }});

  

The callback function is very complex:

Handsontable.hooks.getRegistered (): Returns all registered functions to add a variable to config, if you do not know callback parameters, Console.log (arguments) can

Handsontable-developer guide-setting Options,callback

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.