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
If your display DIV is contained in a TABLE cell then the drag down feature does not seem to work
eg
<html> <head> <script src="../lib/jquery.min.js"></script> <script src="../dist/jquery.handsontable.full.js"></script> <link rel="stylesheet" media="screen" href="../dist/jquery.handsontable.full.css"> </head> <body> <table> <tr> <td><div id="dataTable"></div></td> </tr> </table> <script> $("#dataTable").handsontable({ startRows: 8, startCols: 5, rowHeaders: true, colHeaders: true, minSpareRows: 1, fillHandle: true //possible values: true, false, "horizontal", "vertical" }); var data = [ ["", "Kia", "Nissan", "Toyota", "Honda"], ["2008", 10, 11, 12, 13], ["2009", 20, 11, 14, 13], ["2010", 30, 15, 12, 13], ["2011", "", "", "", ""], ["2012", "", "", "", ""] ]; $("#dataTable").handsontable("loadData", data); </script> </body> </html>
If I take the div out of the table then it works
<html> <head> <script src="../lib/jquery.min.js"></script> <script src="../dist/jquery.handsontable.full.js"></script> <link rel="stylesheet" media="screen" href="../dist/jquery.handsontable.full.css"> </head> <body> <div id="dataTable"></div> <script> $("#dataTable").handsontable({ startRows: 8, startCols: 5, rowHeaders: true, colHeaders: true, minSpareRows: 1, fillHandle: true //possible values: true, false, "horizontal", "vertical" }); var data = [ ["", "Kia", "Nissan", "Toyota", "Honda"], ["2008", 10, 11, 12, 13], ["2009", 20, 11, 14, 13], ["2010", 30, 15, 12, 13], ["2011", "", "", "", ""], ["2012", "", "", "", ""] ]; $("#dataTable").handsontable("loadData", data); </script> </body> </html>
The text was updated successfully, but these errors were encountered:
http://jsfiddle.net/2wkeB/
Sorry, something went wrong.
Duplicate of #355
We have a new policy of closing duplicate tickets. Thanks for your input, please follow original #355 for this issue.
bugfix: drag-down not working if Handsontable is inside a table (#355, …
41bf4d1
…#361, #538, #438, #671, #704) - this makes me realize how many people still use tables to create a layout
This should be fixed in new version of HOT (0.9.6). Thanks for your report.
No branches or pull requests
If your display DIV is contained in a TABLE cell then the drag down feature does not seem to work
eg
If I take the div out of the table then it works
The text was updated successfully, but these errors were encountered: