Hi,
i converted a solution from Version 2011.1.11.419 to 2011.2.11.712 and now something with RadGrid.Refresh(); doesn't work as it does before.
Is this a known issue or should i call an other function?
I've got a context menu to manipulate the data of a column in multiple selected rows, after that i call Refresh() to show the new data. This worked fine in version 419...
The grid is bound to an EF-datasource, which is written to the DB in a separate function, after all modifications to the data are done.
The code looks like this:
Best regards
i converted a solution from Version 2011.1.11.419 to 2011.2.11.712 and now something with RadGrid.Refresh(); doesn't work as it does before.
Is this a known issue or should i call an other function?
I've got a context menu to manipulate the data of a column in multiple selected rows, after that i call Refresh() to show the new data. This worked fine in version 419...
The grid is bound to an EF-datasource, which is written to the DB in a separate function, after all modifications to the data are done.
The code looks like this:
if (this.grdEinheiten.SelectedRows.Count > 0)
{
foreach (GridViewRowInfo row in grdEinheiten.SelectedRows)
{
if (row.DataBoundItem is ClientTableItem)
{
ClientTableItem item = (ClientTableItem)row.DataBoundItem;
switch (art)
{
case something:
item.Something = value;
break;
...
default:
break;
}
}
}
this.grdEinheiten.Refresh();
}
Best regards