I'm using a web2py SQLForm.grid with the selectable option (checkboxes). The headers are all misaligned to the left with no added column-widths/centering above the data rows.
For example: Headers should look like this:
Header1 Header2
data1 data2
but actually look like this:
Header1 Header2
data1 data2
Is there a way to control this in the SQLForm.grid signature, or some other way?
I'd prefer to not rely on client-side javascript to fix this.
Thanks in advance for any help.
I found the problem.
I had CSS style setting in my view that was overriding the web2py formatting. I didn't realize the CSS style setting was there. When I found it and removed it, the formatting worked properly. Totally my fault.
This problem is solved.