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
http://handsontable.com/demo/current.html
I was just upgrading the version I'm using for a project at work and noticed that row highlighting is no longer taking effect.
I was able to get it to work by adding !important to my css for current row and column. Broken on demo page linked above though.
.handsontable .currentRow { background-color: #E7E8EF !important; } .handsontable .currentCol { background-color: #F9F9FB !important; }
Thanks
The text was updated successfully, but these errors were encountered:
Thanks for spotting it. I've already fixed the error.
Sorry, something went wrong.
The error was only in the CSS selector (now need to write .handsontable .htCore .currentCol or .handsontable td.currentCol)
.handsontable .htCore .currentCol
.handsontable td.currentCol
remove necessity of always using ".htCore" (makes a better fix for #965…
1ec025f
… and #956) jQuery UI Datepicker moved outside of ".handsontable" to retain compability with fixes for #498
In HOT 0.9.13 I removed the requirement to use .handsontable .htCore .currentCol
Previous notation .handsontable .currentCol will work again (though you don't have to revert if you already made changes to your code - both work now)
.handsontable .currentCol
No branches or pull requests
http://handsontable.com/demo/current.html
I was just upgrading the version I'm using for a project at work and noticed that row highlighting is no longer taking effect.
I was able to get it to work by adding !important to my css for current row and column. Broken on demo page linked above though.
Thanks
The text was updated successfully, but these errors were encountered: