我想在运行时动态更新GridView数据。
我的要求是在完成循环后不立即更新gridview。这可能吗?
我想在GridView行中显示进度状态,例如工作......,等待......并完成......
我知道如何动态更新gridview,但循环完成执行后显示进度。
以下是我想要运行的代码 -
foreach (GridViewRow row in gvCSVData.Rows)
{
// Update the row state as Working.
// I want to show user this status, not after iterating
// all the rows of GridView but just after the setting the status.
row.Cells[4].Text = "Working...";
// Work with the row here, do something..
// Update the row state as completed.
// I want to show user this status, not after iterating
// all the rows of GridView but just after the setting the status.
row.Cells[4].Text = "Completed";
}
情景 -
如果GridView有10行,那么我想在我在GridView中使用的每一行的单元格中显示状态。例如“工作”,如果我正在使用行,“完成”后,我完成了行。然后转到GridView的下一行。我希望用户显示工作状态。