0420-001
This commit is contained in:
parent
182a5e60d5
commit
da4ee22341
|
@ -6,3 +6,4 @@
|
|||
/SGGLPackFile
|
||||
/SGGL/FineUIPro.Web/File/Excel/Temp
|
||||
/SGGL/FineUIPro.Web/common
|
||||
/SGGL/FineUIPro.Web/FileUpload/QRCodeFile
|
||||
|
|
|
@ -56,6 +56,8 @@
|
|||
</f:Tree>
|
||||
<f:HiddenField runat="server" ID="hdSelectId">
|
||||
</f:HiddenField>
|
||||
<f:HiddenField runat="server" ID="hdType">
|
||||
</f:HiddenField>
|
||||
</Items>
|
||||
</f:Panel>
|
||||
<f:Panel runat="server" ID="panelCenterRegion" RegionPosition="Center" Layout="Fit"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -66,6 +66,15 @@ namespace FineUIPro.Web.JDGL.WBS {
|
|||
/// </remarks>
|
||||
protected global::FineUIPro.HiddenField hdSelectId;
|
||||
|
||||
/// <summary>
|
||||
/// hdType 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.HiddenField hdType;
|
||||
|
||||
/// <summary>
|
||||
/// panelCenterRegion 控件。
|
||||
/// </summary>
|
||||
|
|
|
@ -36,7 +36,7 @@ namespace FineUIPro.Web.JDGL.WBS
|
|||
if (unitProject != null)
|
||||
{
|
||||
txtCode.Text = GetNewCode(unitProject.UnitProjectCode, 0, "wbsSet");
|
||||
this.txtCode.Readonly = true;
|
||||
//this.txtCode.Readonly = true;
|
||||
if (unitProject.StartDate != null)
|
||||
{
|
||||
txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", unitProject.StartDate);
|
||||
|
@ -50,7 +50,7 @@ namespace FineUIPro.Web.JDGL.WBS
|
|||
if (wbsSet != null)
|
||||
{
|
||||
txtCode.Text = GetNewCode(wbsSet.WbsSetCode, 0, "wbsSet");
|
||||
this.txtCode.Readonly = true;
|
||||
//this.txtCode.Readonly = true;
|
||||
if (wbsSet.StartDate != null)
|
||||
{
|
||||
txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", wbsSet.StartDate);
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<Rows>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtCode" runat="server" Label="编号" Readonly="true" LabelWidth="150px" Required="true" ShowRedStar="true" ></f:TextBox>
|
||||
<f:TextBox ID="txtCode" runat="server" Label="编号" LabelWidth="150px" Required="true" ShowRedStar="true" ></f:TextBox>
|
||||
<f:TextBox ID="txtName" runat="server" Label="名称" LabelWidth="150px" Required="true" ShowRedStar="true"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
|
|
Loading…
Reference in New Issue