Binding Handsontable cells to complex objects
问题 I'm trying to use Handsontable for some basic editing and number formatting. The data, including formatting info is fetched from the server and would look similar to this: var data = [ [ { num:'1.1', color:'red' }, { num:'2.2', color:'green' } ], [ { num:'3.4', color:'yellow' }, { num:'4.4', color:'blue' } ] ]; Now, I would like to pass this data to my Handsontable and have each cell display/edit the .num values. By using a custom renderer and editor (briefly explained here: Understanding