I am applying filter to a radgridview as
((DataTable)Grid.DataSource).DefaultView.RowFilter = TxtBxExpression.Text;
((DataTable)Grid.DataSource).DefaultView.AllowNew = true;
Grid.MasterTemplate.Refresh();
Grid.MasterView.Refresh();
After that when I am trying to insert a row as
Grid.Rows.Add();
It is inserting a row at the end but it is without any columns and not even dropdowns of the rows are selectable so that I can change the row values and the update the data.So I want a row that has columns and its dropdowns are editable.So how can I do that?
((DataTable)Grid.DataSource).DefaultView.RowFilter = TxtBxExpression.Text;
((DataTable)Grid.DataSource).DefaultView.AllowNew = true;
Grid.MasterTemplate.Refresh();
Grid.MasterView.Refresh();
After that when I am trying to insert a row as
Grid.Rows.Add();
It is inserting a row at the end but it is without any columns and not even dropdowns of the rows are selectable so that I can change the row values and the update the data.So I want a row that has columns and its dropdowns are editable.So how can I do that?