What am I doing wrong. I have a grid with several columns. One column is text OCRed from a page and can be up to 2k alpha numeric character. Obviously I only want to show the first 50 or so. I'ved tried many suggestions but nothing seems to work. Here is the code for the one column:
GridBoundColumn gridColumn = new GridBoundColumn();
RadGrid1.MasterTableView.Columns.Add(gridColumn);
gridColumn.DataFormatString =
"<nobr>{0}</nobr>";
gridColumn.DataField = dataColumn.ColumnName;
gridColumn.HeaderText = dataColumn.ColumnName;
gridColumn.HeaderStyle.Width =
Unit.Pixel(125);
gridColumn.ItemStyle.Width =
Unit.Pixel(125);
gridColumn.FooterStyle.Width =
Unit.Pixel(125);