This commit is contained in:
parent
aaa8090205
commit
4b8bc359cf
|
|
@ -90,7 +90,7 @@
|
||||||
</f:TextBox>
|
</f:TextBox>
|
||||||
|
|
||||||
<f:DropDownList ID="ddlFlowingSection" runat="server" Label="流水段"
|
<f:DropDownList ID="ddlFlowingSection" runat="server" Label="流水段"
|
||||||
Width="180px" LabelWidth="80px" LabelAlign="Right">
|
Width="180px" LabelWidth="80px" LabelAlign="Right" AutoSelectFirstItem="true">
|
||||||
</f:DropDownList>
|
</f:DropDownList>
|
||||||
<f:DropDownList ID="ddlPipeArea" runat="server" Label="管线划分"
|
<f:DropDownList ID="ddlPipeArea" runat="server" Label="管线划分"
|
||||||
Width="180px" LabelWidth="80px" LabelAlign="Right">
|
Width="180px" LabelWidth="80px" LabelAlign="Right">
|
||||||
|
|
|
||||||
|
|
@ -489,6 +489,7 @@ namespace FineUIPro.Web.HJGL.PreDesign
|
||||||
this.ddlFlowingSection.DataSource = flowingSections.Select(x => new { FlowingSection = x }).ToList();
|
this.ddlFlowingSection.DataSource = flowingSections.Select(x => new { FlowingSection = x }).ToList();
|
||||||
this.ddlFlowingSection.DataBind();
|
this.ddlFlowingSection.DataBind();
|
||||||
Funs.FineUIPleaseSelect(this.ddlFlowingSection, "-请选择-");
|
Funs.FineUIPleaseSelect(this.ddlFlowingSection, "-请选择-");
|
||||||
|
ddlFlowingSection.SelectedValue = Const._Null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue