/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/qc/jigmaint.aspx
89 строк
4 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="jigmaint.aspx.vb" Inherits="jigMaint" EnableEventValidation="false" ValidateRequest="false" MaintainScrollPositionOnPostback="true" %> <%@ Register Src="~/UserControls/editableGrid.ascx" TagName="editableGrid" TagPrefix="uc1" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Module Master Table Viever</title> <style type="text/css"> .tableData { font-size: 10px; } #tblFilters td { text-align: center; border-collapse: collapse; } #tblFilters { margin: 0 auto; background: #9fce55; border-top: 3px solid #84a564; margin-bottom: 1px; } body { font-family: Arial; font-size: 10px; } .comboBoxInsideModalPopup { position: relative; } .comboBoxInsideModalPopup ul { position: absolute !important; left: 2px !important; top: 2px !important; } </style> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> <Scripts> <asp:ScriptReference Path="~/Scripts/jquery-1.9.1.min.js" /> </Scripts> </asp:ScriptManager> <uc1:editableGrid ID="edTableToView" runat="server" TableId="479" /> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Panel ID="history" runat="server" Style="position: absolute; left: 33%; top: 20%; border: 2px solid Black; "> <table > <tr id="headerRow" style="cursor : move ;"> <td style="width: 90%; text-align: center; background-color: white;">Maintanance history - last 10</td> <td style="text-align: right; background-color: white; width: 10%;"> <asp:ImageButton ID="closePopup" runat ="server" ImageUrl ="~/Images/Cancel.png" /> </td> </tr> <tr> <td colspan ="2" style="text-align: center;"> <asp:GridView runat="server" ID="historyData" CellPadding="4" ForeColor="#333333" GridLines="None"> <AlternatingRowStyle BackColor="White" /> <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" /> <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" /> <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" /> <RowStyle BackColor="#FFFBD6" ForeColor="#333333" /> <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" /> <SortedAscendingCellStyle BackColor="#FDF5AC" /> <SortedAscendingHeaderStyle BackColor="#4D0000" /> <SortedDescendingCellStyle BackColor="#FCF6C0" /> <SortedDescendingHeaderStyle BackColor="#820000" /> </asp:GridView> </td> </tr> </table> </asp:Panel> <asp:DragPanelExtender ID="history_DragPanelExtender" runat="server" DragHandleID="headerRow" Enabled="True" TargetControlID="history" > </asp:DragPanelExtender> </ContentTemplate> </asp:UpdatePanel> </div> </form> </body> </html>