数据穿透新增页面

This commit is contained in:
2023-06-09 10:20:38 +08:00
parent 857a427be6
commit 72f0109f93
132 changed files with 15962 additions and 205 deletions
@@ -119,10 +119,11 @@ namespace FineUIPro.Web.ZHGL.Supervise
{
for (int i = 0; i < Grid1.Rows.Count; i++)
{
CheckBoxField checkField = (CheckBoxField)Grid1.FindColumn("ckbIsSelected");
string id = Grid1.DataKeys[i][0].ToString();
if (list.Contains(id))
{
Grid1.Rows[i].Values[0] = true;
checkField.SetCheckedState(i, true);
}
}
}