Hi Is there any way to hide a cell border (right side) in jqgrid ?
Actual :
Desired :
PS : I want to leave all other borders intact (i just want to remove the checkbox's right border)
If I correctly understand your requirement you can add the following CSS rule. Let us you have the grid with id="list"
then you can use
#list_cb { border-right-color: transparent; }
See the answer with a close problem.