Im working with C# 3.0, GridViews, so my idea is the following "Save actual data from gridviewA in some local var, then perform changes in real context and finally bind them all again in the same GridView": (steps)
1) I Have GridViewA with following columns :
CodeClass Description Price Appointment 4798 Arthro Resonance $200 16:20
2) From GridViewB i Obtain certain data to modify the actual GridViewA row:
string newAppointment = ((Label)selectedRow.Cells[0].FindControl("lblHorario")).Text;
int newCodeAppointment = Convert.ToInt32(((Label)selectedRow.Cells[0].FindControl("lblCodigoHorario")).Text);
int newCodeEquipment = Convert.ToInt32(((Label)selectedRow.Cells[0].FindControl("lblCodigoEquipo")).Text);
3) I verify that some row is checked at least in GridViewA, (if is checked that row have to be modified with the new vars)
rowCount = GridViewA.Rows.Count;
if (e.CommandName == "AddtoSelected")
{
for (int i = 0; i <= (rowCount - 1); i++)
{
chkEstudio = GridViewA.Rows[i].FindControl("ChkAssign") as CheckBox;
if (chkEstudio.Checked)
{
//DetalleCita is a Class with attributes to bind GridViewA
List<DetalleCita> lstAux = new List<DetalleCita>();
foreach (GridViewRow row in this.GridViewA.Rows)
{
lstAux.Add(new DetalleCita
{
horacita = dt
});
}
GridViewA.DataSource = lstAux;
GridViewA.DataBind();
}
}
}
else
{
//ToDo:
//Delete Row
}
GridViewA.DataBind();
}
With the pasted code i modified but all rows, i want to modify just the selected row, so my main idea is to keep all rows before modify and then add one by one, whats your opinion?, please feedback , Thanks!
