移交管理新增添加功能

This commit is contained in:
2024-07-31 17:38:02 +08:00
parent 9e4e28fda2
commit b308165d8c
38 changed files with 2646 additions and 31 deletions
@@ -22,9 +22,22 @@ namespace FineUIPro.Web.Transfer
{
GetButtonPower();
BindGrid();
btnNew.OnClientClick = Window1.GetShowReference("InstrumentationEdit.aspx") + "return false;";
}
}
protected void btnMenuModify_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
return;
}
string id = Grid1.SelectedRowID;
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("InstrumentationEdit.aspx?Id={0}", id, "编辑 - ")));
}
/// <summary>
/// 数据绑定
/// </summary>