This question is locked. New answers and comments are not allowed.
Hello Friends ! i m working om silverlight 3.0 beta versions. I m using RadGrdiview. I m Adding columns collections in GridViewColumnCollection .My problem is when I add columns Collections in Gridview one Blank Extra columns also add at last you can see my code.i m adding one single column below but in Gridview display TWO columns.one is "Name" column and second blank column without heading. Why Second Blank column display in Gridview????how to remove blank extra column.???
psl see attached Screenshots
var columns = new GridViewColumnCollection();
var sizeColumn = new GridViewDataColumn
{
Header = "Size",
Width = new GridViewLength(250)
};
columns.Add(sizeColumn);
gridEmail.Columns.Clear();
gridEmail.Columns.AddRange(columns);
