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
css rule to mark selected rows when using ui-grid-selection feature (from ui-grid.css)
.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell { background-color: #c9dde1; }
does not work with a rowTemplate (as suggested in documentation)
rowTemplate: '<div grid="grid" class="ui-grid-draggable-row" draggable="true">' + $templateCache.get('ui-grid/ui-grid-row') + '</div>',
because of the additional
quick fix to css rule:
.ui-grid-row.ui-grid-row-selected > [ui-grid-row] .ui-grid-cell { background-color: #c9dde1; }
(notice removal of the second ">")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
css rule to mark selected rows when using ui-grid-selection feature (from ui-grid.css)
does not work with a rowTemplate (as suggested in documentation)
because of the additional
quick fix to css rule:
(notice removal of the second ">")
The text was updated successfully, but these errors were encountered: