Skip to content

Add new setValue method

Compare
Choose a tag to compare
@ikhsan017 ikhsan017 released this 20 Mar 01:06
· 59 commits to main since this release

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.