I want to have a “separation” row between this two lines (red line)
Any idea how can I solve this?
1 Answers
You can have this css style.
<style>
.ui-jqgrid tr.jqgrow td {
border-bottom: 3px solid red;
}
</style>
CSS Tweaking: https://i.imgur.com/pIzIbk8.png
If you want line under some certain row, then you must have it’s ID, like:
https://i.imgur.com/ie9wXHt.png
And then have css, e.g. row with id=18:
<style>
.ui-jqgrid tr[id=”18″] td {
border-bottom: 3px solid red;
}
</style>
Your Answer