#1 Understood. This is how you want to keep it by design. But what can I do if I want to display the columns with certain given widths? And the same question for the grid header height...
#2 The problem happens all the time and it seems that it doesn't come from the size of the icon. By inspecting the code for the component and the HTML that you generate for printing for a cell within a treeGrid an extra 2px/2px top/bottom padding is the cause.
Component:
Print:
Hence if you also add the "padding-top: 0px;padding-bottom: 0px;" to the printing code the problem gets solved.
#2 The problem happens all the time and it seems that it doesn't come from the size of the icon. By inspecting the code for the component and the HTML that you generate for printing for a cell within a treeGrid an extra 2px/2px top/bottom padding is the cause.
Component:
Code:
<td height="21" align="left" style="WIDTH:200px;OVERFLOW:hidden;padding-top: 0px;padding-bottom: 0px;white-space:nowrap;" class="treeCell">...</td>
Code:
<td align="left" style="OVERFLOW:hidden;HEIGHT:17px;" class="treeTallCell">...</td>
Comment