0

Hi Is there any way to hide a cell border (right side) in jqgrid ?

Actual : enter image description here

Desired : enter image description here

PS : I want to leave all other borders intact (i just want to remove the checkbox's right border)

Joseph
  • 378
  • 1
  • 3
  • 16

1 Answers1

1

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.

Community
  • 1
  • 1
Oleg
  • 220,925
  • 34
  • 403
  • 798
  • @Olag can i ask one more question ? – Joseph Sep 15 '14 at 13:52
  • @Joseph: Of cause. You can open new question for example. – Oleg Sep 15 '14 at 13:55
  • @Olag it concerns this one in fact. – Joseph Sep 15 '14 at 13:55
  • I have multiselect activated but i am looking to remove the check all checkbox from the header section , i can't seem to find a neat way to do it. ideally i would want to merge the first two columns (the checkbox's one and the one after 'Offre'). – Joseph Sep 15 '14 at 13:58
  • @Joseph: It's very easy. You need just execute `$("#cb_list").hide();` once after the grid is created. It hides the checkbox. See [the old answer](http://stackoverflow.com/a/6213082/315935). – Oleg Sep 15 '14 at 14:06
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/61282/discussion-between-joseph-and-oleg). – Joseph Sep 15 '14 at 14:07
  • I'm not sure what you want to do. I don't understand which **real problem** one have because of the cell exist? One can force hovering on the next cell inside of hovering on `#list_cb`, but I don't really see a problem. – Oleg Sep 15 '14 at 14:50