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
235
UltraGrid Row Height
posted

Hi

There is requirement for settting the row height of ultragrid to three times the default height. Also if the text doesn't fit into the available width and height, then it should show the ellipsis at end and show full text in the tooltip on grid cell

As far I know that I can either set the row to autosize according to the length of text or can set the elipsis to show grid cell. But I don't know how can I set the both at one time

Thanks

Narinder

Parents
  • 27093
    posted

    Hello Narinder.

    In order to set the height of the row you can use:

    ultraGrid1.DisplayLayout.Override.RowSizingAutoMaxLines = 3;

    in addition to

    this.ultraGrid1.DisplayLayout.Override.RowSizing = RowSizing.AutoFree;

     

    ultraGrid1.DisplayLayout.Override.CellMultiLine =

    DefaultableBoolean.True;

    but when you are using CellMultiLine you can't set TextTrimming since the text isn't actually trimmed it simply not visualized. In order to have the ellipsis character you'll have to provide your own logic.

    Sincerely,

    Petar Monov

    Developer Support Engineer,

    Infragistics, Inc

     

     

Reply Children