?? chooseworkflowrole.aspx
字號:
?<%@ Page Language="C#" MasterPageFile="~/Admin/Dialog.master" AutoEventWireup="true"
CodeBehind="ChooseWorkflowRole.aspx.cs" Inherits="Agile.OA.Web.Admin.ChooseWorkflowRole"
StylesheetTheme="Dialog" Title="選擇工作流角色" %>
<asp:Content ID="Content" ContentPlaceHolderID="Content" runat="server">
<script type="text/javascript">
$(
function()
{
$("#WorkflowRoles").agileTable();
$("#WorkflowRoles").tableHover(
{
rowClass: "Hover"
});
$("#Confirm").click(
function()
{
window.parent.returnValue = $("#Ids").val();
window.close();
});
});
</script>
<table class="Container">
<tr>
<td>
<asp:ListView ID="WorkflowRoles" runat="server" ItemPlaceholderID="ItemContainer">
<LayoutTemplate>
<table id="WorkflowRoles" class="List">
<thead>
<tr>
<th class="Choose">
<input id="Header" type="checkbox" />
</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>
<%# Eval("Name") %>
</td>
<td>
<%# Eval("Description") %>
</td>
</tr>
</ItemTemplate>
<EmptyDataTemplate>
<table id="WorkflowRoles" class="List">
<thead>
<tr>
<th class="Choose">
</th>
<th>
名 稱
</th>
<th>
描 述
</th>
</tr>
</thead>
</table>
</EmptyDataTemplate>
</asp:ListView>
<input id="Ids" type="hidden" />
</td>
</tr>
<tr>
<td>
<agile:Pager ID="Pager" runat="server" OnPageIndexChanged="Pager_PageIndexChanged" />
</td>
</tr>
<tr>
<td class="Bottom">
<input id="Confirm" type="button" value="確 定" />
</td>
</tr>
</table>
</asp:Content>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -