We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The interface for removing rows looks like this:
handsontable('alter', 'remove_row', index, [toIndex])
and the interface for adding rows looks like this:
handsontable('alter', 'insert_row', index)
It would be good - I think - if it could be more unified in the form of:
handsontable('alter', 'remove_row', startIndex, [numberOfRows]) handsontable('alter', 'insert_row', startIndex, [numberOfRows])
The text was updated successfully, but these errors were encountered:
Good idea. I will implement it soon.
Sorry, something went wrong.
feature: now the third parameter to the alter method tells the amou…
alter
67fe67c
…nt of rows/columns to be inserted/removed (#368)
This is now implemented in Handsontable 0.8.11. Thanks for the inspiration. Please test it if you happen to have some free time :)
No branches or pull requests
The interface for removing rows looks like this:
handsontable('alter', 'remove_row', index, [toIndex])
and the interface for adding rows looks like this:
handsontable('alter', 'insert_row', index)
It would be good - I think - if it could be more unified in the form of:
handsontable('alter', 'remove_row', startIndex, [numberOfRows])
handsontable('alter', 'insert_row', startIndex, [numberOfRows])
The text was updated successfully, but these errors were encountered: