I am using multiple ui-grid, wants to edit ui-grid-row class for one grid only. but its reflecting to all.
Code
I want height of row should be auto for second grid only.
I applied CSS as
.gridR.ui-grid-row{height: auto!important;} .gridR.ui-grid-row > div { display: table-row;}
.gridR.ui-grid-row > div .ui-grid-cell {display: table-cell;float: none;vertical-align: middle; height: auto!important;}
.gridR.ui-grid-cell-contents{ white-space: normal; text-overflow: inherit;word-break: break-word;}
but nothing happened.
Can someone help on this.
Thanks