| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebForm.Platform.WorkFlowButtons.Default" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div class="querybar">
- <table cellpadding="0" cellspacing="1" border="0" width="100%">
- <tr>
- <td>
- 名称:<input type="text" class="mytext" style="width:190px;" id="Name" name="Name" runat="server" />
- <input type="submit" name="Search" value=" 查 询 " class="mybutton" />
- <input type="button" onclick="add(); return false;" value="添加按钮" class="mybutton" />
- <input type="submit" onclick="return del();" name="DeleteBut" value="删除所选" class="mybutton" />
- </td>
- </tr>
- </table>
- </div>
- <table class="listtable">
- <thead>
- <tr>
- <th sort="0" width="30"><input type="checkbox" onclick="checkAll(this.checked);" style="vertical-align:middle;" /></th>
- <th>按钮名称</th>
- <th>按钮图标</th>
- <th>按钮说明</th>
- <th sort="0">操作</th>
- </tr>
- </thead>
- <tbody>
- <%
- foreach (var button in workFlowButtonsList.OrderBy(p => p.Title))
- {%>
- <tr>
- <td><input type="checkbox" value="<%=button.ID %>" name="checkbox_app" style="vertical-align:middle;" /></td>
- <td><%=button.Title %></td>
- <td align="center"><%=!button.Ico.IsNullOrEmpty()?"<img src='"+WebForm.Common.Tools.BaseUrl+ button.Ico+"' alt='' />":""%></td>
- <td><%=button.Note %></td>
- <td>
- <a class="editlink" href="javascript:edit('<%=button.ID %>');">编辑</a>
- </td>
- </tr>
- <% }%>
- </tbody>
- </table>
- <script type="text/javascript">
- var appid = '<%=Request.QueryString["appid"]%>';
- var iframeid = '<%=Request.QueryString["tabid"]%>';
- var dialog = top.mainDialog;
-
- function add()
- {
- dialog.open({ id: "window_" + appid.replaceAll('-', ''), title: "添加按钮", width: 700, height: 420, url: top.rootdir + '/Platform/WorkFlowButtons/Edit.aspx?1=1' + '<%=Query1%>', openerid: iframeid });
- }
- function edit(id)
- {
- dialog.open({ id: "window_" + appid.replaceAll('-', ''), title: "编辑按钮", width: 700, height: 420, url: top.rootdir + '/Platform/WorkFlowButtons/Edit.aspx?id=' + id + '<%=Query1%>', openerid: iframeid });
- }
- function checkAll(checked)
- {
- $("input[name='checkbox_app']").prop("checked", checked);
- }
- function del()
- {
- if ($(":checked[name='checkbox_app']").size() == 0)
- {
- alert("您没有选择要删除的项!");
- return false;
- }
- return confirm('您真的要删除所选按钮吗?');
- }
- </script>
- </form>
- </body>
- </html>
|