Hello all,
i want to add column dynalically to the RadGridView with setting width programatically.
Using below code i am not able set the width of column width inside RadGridView in wpf application.
RadgridView in telerik does not pick the column column specified in the code instead it opens proportionaloity to grid size.
Can you please help regarding how to set the column width programatically.
GridViewDataColumn col = new GridViewDataColumn();
col.Header = "Order Number";
col.UniqueName = "TRP";
col.Width = 20 ;
OpenProcsGridView.Columns.Add(col);
the code above does not set the columnwidth and radgrid view open the column width proportionality to grid size .
can we customize the column width acc to user wants