0

I'm facing problem in infragistics Grid, i've html string which i'm showing in grid it is showing properly in column BUT i'm facing below two problems

  1. Ellipses are not showing.
  2. Tooltip is showing html string instead of actual matter/string. https://unsee.cc/renamuti/
Sanjay Bhardwaj
  • 412
  • 2
  • 10
  • 1
    Could please provide some short abstract of your code to demonstrate the problem. – Olga Jun 30 '15 at 10:39

1 Answers1

0

For Winforms UltraGrid try:

yourGrid.DisplayLayout.Override.CellAppearance.TextTrimming = TextTrimming.EllipsisCharacter;

For XamDataGrid try:

 <Style TargetType="{x:Type igWpf:SimpleTextBlock}">
     <Setter Property="TextTrimming" Value="CharacterEllipsis"/>
 </Style>
Athena Widget
  • 211
  • 2
  • 8