Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
156
Facing rowheight problem in Version 9.2
posted

Hello,

Currently we updated our webgrid 9.1 to version 9.2

In version 9.1 i had given rowheight=20 to web grid row, but when i replaced the with new version 9.2 then it has some problem in data display.

but we want rowheight=20 as we have to match row size to excel size, so i can't increase the row size.

Waiting for reply

Parents
  • 40030
    Verified Answer
    Offline posted

    Hi, 

    We added a padding of 5px to the bottom of the CellControl, which is causing the text to be clipped. 

    You can remove it with the following Style:

    <Style x:Key="cc" TargetType="ig:CellControl">

    <Setter Property="Padding" Value="5,5,5,0"/>

    </Style>

    <ig:XamWebGrid CellStyle="{StaticResource cc}" />

    -SteveZ

Reply Children
No Data