?? listworkflowdefinition.aspx
字號:
?<%@ Page Language="C#" MasterPageFile="~/Admin/Default.Master" AutoEventWireup="true"
CodeBehind="ListWorkflowDefinition.aspx.cs" Inherits="Agile.OA.Web.Admin.ListWorkflowDefinition" %>
<asp:Content ID="Content" ContentPlaceHolderID="Content" runat="server">
<script type="text/javascript">
$(
function()
{
$("#WorkflowDefinitions").agileTable(
{
target: "<%= this.Ids.ClientID %>"
});
$("#WorkflowDefinitions").tableHover(
{
rowClass: "Hover"
});
});
</script>
<table class="Container">
<tr>
<td class="Top">
<input id="Add" type="button" class="Button" value="增 加" onclick="location.href='EditWorkflowDefinition.aspx'" />
<asp:Button ID="Delete" runat="server" Text="刪 除" OnClientClick="return validateDelete('工作流定義');"
OnClick="Delete_Click" />
</td>
</tr>
<tr>
<td>
<asp:ListView ID="WorkflowDefinitions" runat="server" ItemPlaceholderID="ItemContainer">
<LayoutTemplate>
<table id="WorkflowDefinitions" class="List">
<thead>
<tr>
<th class="Choose">
<input id="Header" type="checkbox" />
</th>
<th>
名 稱
</th>
<th>
描 述
</th>
<th>
模 板
</th>
<th>
修改時間
</th>
</tr>
</thead>
<tbody id="ItemContainer" runat="server">
</tbody>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td>
<input id="Item" type="checkbox" title="<%# Eval("Id") %>" />
</td>
<td>
<a href="EditWorkflowDefinition.aspx?Id=<%# Eval("Id") %>">
<%# Eval("Name") %></a>
</td>
<td>
<%# Eval("Description") %>
</td>
<td>
<%# Eval("Template") %>
</td>
<td>
<%# Eval("FinishTime", "{0:yyyy-MM-dd HH:mm:ss}") %>
</td>
</tr>
</ItemTemplate>
<EmptyDataTemplate>
<table id="WorkflowDefinitions" class="List">
<thead>
<tr>
<th class="Choose">
</th>
<th>
名 稱
</th>
<th>
描 述
</th>
<th>
模 板
</th>
<th>
修改時間
</th>
</tr>
</thead>
</table>
</EmptyDataTemplate>
</asp:ListView>
<asp:HiddenField ID="Ids" runat="server" />
</td>
</tr>
</table>
</asp:Content>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -