Remove vertical lines in jqGrid

前端 未结 3 697
星月不相逢
星月不相逢 2020-12-03 09:31

I want to remove the lines displayed in the image of jqGrid. How can I remove that?

\"Enter

3条回答
  •  不思量自难忘°
    2020-12-03 09:54

    Rather than changing your CSS in custom.css file, you can do something like this in your inline CSS:

    .ui-widget-content table#YourTableId { border: 0px !important; }
    

    Don't forget !important, it will override the CSS defined for your table in a custom CSS file.

提交回复
热议问题