86 lines
4.5 KiB
Plaintext
86 lines
4.5 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrainPlanEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.Train.TrainPlanEdit" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<title>培训计划</title>
|
|
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
|
|
<script src="../../Controls/My97DatePicker/WdatePicker.js" type="text/javascript"></script>
|
|
<style type="text/css">
|
|
.labcenter {
|
|
text-align: center;
|
|
}
|
|
|
|
.f-grid-row .f-grid-cell-inner {
|
|
white-space: normal;
|
|
word-break: break-all;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
|
|
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:ContentPanel ID="ContentPanel2" Title="培训计划" ShowBorder="true"
|
|
BodyPadding="10px" EnableCollapse="true" ShowHeader="true" AutoScroll="true"
|
|
runat="server">
|
|
<f:Form ID="Form2" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpPlanTrainPersons" runat="server" ShowRedStar="true" Required="true" Label="培训对象" LabelAlign="Right" EnableCheckBoxSelect="true" EnableMultiSelect="true" EnableEdit="true" LabelWidth="100px">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpTrainType" runat="server" ShowRedStar="true" Required="true" Label="培训类别" LabelAlign="Right" EnableEdit="true" LabelWidth="100px">
|
|
</f:DropDownList>
|
|
<f:DatePicker ID="txtPlanTrainDate" ShowRedStar="true" Required="true" runat="server" Label="预制培训时间" LabelAlign="Right" LabelWidth="120px"
|
|
EnableEdit="true">
|
|
</f:DatePicker>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtTrainContent" ShowRedStar="true" Required="true" runat="server" Label="培训内容" MaxLength="500">
|
|
</f:TextArea>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
</f:Form>
|
|
</f:ContentPanel>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:Label runat="server" ID="lbTemp">
|
|
</f:Label>
|
|
<f:ToolbarFill ID="ToolbarFill1" runat="server">
|
|
</f:ToolbarFill>
|
|
<f:Button ID="btnSave" Icon="SystemSave" OnClick="btnSave_Click" runat="server" ToolTip="保存" ValidateForms="SimpleForm1">
|
|
</f:Button>
|
|
<f:HiddenField ID="hdId" runat="server">
|
|
</f:HiddenField>
|
|
<f:HiddenField ID="hdAttachUrl" runat="server">
|
|
</f:HiddenField>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Form>
|
|
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
|
Target="Parent" EnableResize="false" OnClose="WindowAtt_Close" runat="server" IsModal="true" Width="700px"
|
|
Height="500px">
|
|
</f:Window>
|
|
</form>
|
|
</body>
|
|
</html>
|