This question is locked. New answers and comments are not allowed.
hi
i am update my radcontrol library from 2010.2.812.1040 to 2011.1.315.1040
after update i am face one problem regarding column
in my application i am create grid's columns dynamically in this some of column is set to isvisible = false
columns is not show but it's occupied some space between column
i am update my radcontrol library from 2010.2.812.1040 to 2011.1.315.1040
after update i am face one problem regarding column
in my application i am create grid's columns dynamically in this some of column is set to isvisible = false
columns is not show but it's occupied some space between column
dgtc = new GridViewDataColumn();//dgtc.MinWidth = 100;dgtc.IsReadOnly = true;//dgtc.Width = GridViewLength.SizeToHeader;if (element.Name == "ID"){ dgtc.MinWidth = 0; dgtc.MaxWidth = 0; dgtc.IsVisible = false;}dgtc.Header = element.NameFormsGrid.Columns.Add(dgtc);