Completed
Last Updated: 25 Jan 2018 16:20 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 18 Jan 2018 12:33
Category: GridView
Type: Bug Report
1
FIX. RadGridView - missing column in RadGridView if the name contains a dot
Bind the grid to the following DataTable:

            DataTable dt = new DataTable();     
            dt.Columns.Add("X.Y"); 
            dt.Columns.Add("X");   
            
            dt.Rows.Add("Data X.Y", "Data X");

            this.radGridView1.DataSource = dt;

You will notice that the second column "X" is missing.

Note: if you change the order of adding the columns, both columns will be added.
0 comments