Add new setValue method
This release introduce new single calx method named setValue
to set the cell value of the selected sheet. You can now set the cell value via calx method
$('#sheet').calx('setValue', 'B1', 100)
And it will act as how $('#sheet').find('[data-cell=B1]').val(100)
works, but also update the internal reference, and calculate the sheet if autoCalculate is enabled.