Completed
Last Updated: 17 Nov 2015 16:26 by ADMIN
ADMIN
Julian Benkov
Created on: 11 Apr 2013 02:58
Category: GridView
Type: Bug Report
1
FIX. RadGridView - adding new row using the DataView AddNew API does not reflect the changes in the grid
The RadGridView is bound to DataView

Workaround: add row using the DataTable API:
private void radButton1_Click(object sender, EventArgs e)
{
    DataRow row = m_dvMat.Table.NewRow();
     row["Active"] = true;
     row["Category"] = form.m_sString;
     m_dvMat.Table.Rows.Add(row);
}
0 comments