0
votes

If actions column has caption "Activity"/custom settings and is frozen, free jqgrid does not draw colum borders for this column in search toolbar.

Vertical lines does not appear in search toolbar:

How to fix this so that column borders appear for Activity column in search toolbar ? Demo in http://www.ok-soft-gmbh.com/jqGrid/OK/FontAwesome4Large-borderlessOnHover2-frozen.htm has borders.

In testcase styles from answer in Remove dancing effect in Chrome from free jqgrid toolbar buttons in font awesome icons are used are used to remove borders from toolbar buttons. Maybe those remove column border also.

1

1 Answers

1
votes

I made some changes in the code of working with frozen columns in free jqGrid. I hope that the problem is fixed now.

UPDATED: I examined your code and could find the reason. It's very easy: you create frozen columns by call of setFrozenColumns before creating of filter toolbar by calling filterToolbar (you do this inside of loadComplete callback). So you should change the order of calls of filterToolbar and setFrozenColumns or recreate the frozen columns by calls destroyFrozenColumns and setFrozenColumns.