Hello,
We have the next function to reload a data in a sfdatagrid:
PartidaCN partidaCN = new PartidaCN();
partidas = partidaCN.obtenerPartidaFRed(f_factura.IDfactura);
if (DgPartidas.View != null)
{
source.DataSource = partidas;
source.ResetBindings(false);
DgPartidas.View.Refresh();
DgPartidas.Refresh();
}
else
{
source.DataSource = partidas;
DgPartidas.DataSource = source;
IniciarGridPartidas();
}
the first time the data load ok. but the next time when inter inside the view != null, the data source refresh well by the data on the editor still showing always the same info. (info of the first execution)
thanks