This question is locked. New answers and comments are not allowed.
I was actually trying to bind my gridview from codebehind and then try to add columns in the gridview dynamically.
My datasource in this case is an XML.
I have tried working with it in normal datagrid
The code for normal binding of datagrid from codebehind is given below.
I want to know how to perform the same operation in telerik radgridview
My datasource in this case is an XML.
I have tried working with it in normal datagrid
The code for normal binding of datagrid from codebehind is given below.
DataGridTextColumn dg = new DataGridTextColumn(); dg.Header = xe.Name.LocalName; Binding bnd = new Binding(); bnd.Converter = new XMLValueConvertor(); bnd.ConverterParameter = xe.Name.LocalName; dg.Binding = bnd;I want to know how to perform the same operation in telerik radgridview