This commit is contained in:
2026-05-27 23:24:57 +08:00
parent c690b541a3
commit 5e9eccc3e3
3 changed files with 24 additions and 1 deletions
@@ -126,6 +126,11 @@
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:CheckBox ID="ckAll" runat="server" Checked="true" Text="是否批量修改"></f:CheckBox>
</Items>
</f:FormRow>
</Rows>
</f:Form>
</Items>
@@ -339,7 +339,16 @@ namespace FineUIPro.Web.HJGL.DataIn
pipeline.Remark = this.txtRemark.Text.Trim();
dic.Remove(this.PipelineId);
ShowNotify("保存成功!", MessageBoxIcon.Success);
if (ckAll.Checked)
{
PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(PipelineId) + ActiveWindow.GetHidePostBackReference());
}
else
{
PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference("") + ActiveWindow.GetHidePostBackReference());
}
}
#endregion
@@ -265,5 +265,14 @@ namespace FineUIPro.Web.HJGL.DataIn
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtRemark;
/// <summary>
/// ckAll 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.CheckBox ckAll;
}
}