GridDataBoundGrid cutting string

Hello all I''''m using GridDataBoundGrid to display values stored in tables. I want that "Name" field will be displayed in tree. In fact, u can see (in attachment) that it cutting the full name ("ocean" become "ocea"). Which property can help me do make it display full name? I tried to write: this.gridDataBoundGrid1.BaseStylesMap["Standard"].StyleInfo.Trimming = StringTrimming.None; but it''s not good enough for my problem. I want to display following string "OceanOf Love" or "OceanOf_Love", and after adding the line above, its displays "OceanOf" and not "OceanOf Love" or "OceanOf_Love". What else can I do about?

1 Reply

ST stanleyj Syncfusion Team February 21, 2006 10:51 AM UTC

Hi Joseph, You can resize the column to see if that helps. this.gridDataBoundGrid1.AllowResizeToFit = false; this.gridDataBoundGrid1.Model.ColWidths[2] = 200; Best regards, Stanley

Loader.
Up arrow icon