/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/innovation/bp/bp.aspx
81 строка
3 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="bp.aspx.vb" Inherits="swat" EnableEventValidation="false" ValidateRequest="false" MaintainScrollPositionOnPostback="true" %> <%@ Register Src="~/UserControls/editableGridNew.ascx" TagName="editableGridNew" TagPrefix="uc1" %> <%@ Register Src="~/UserControls/graphForTable.ascx" TagPrefix="uc1" TagName="graphForTable" %> <%@ 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> <link href="../Styles/page.css" rel="stylesheet" /> <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:editableGridNew ID="edTableToView" runat="server" TableId="524" /> </div> <script type="text/javascript"> //Initial bind $(document).ready(function () { bindVoting(); bindVotingStatus() }); //Re-bind for callbacks var prman = Sys.WebForms.PageRequestManager.getInstance(); //Re-bind for callbacks prman.add_endRequest(function () { bindVoting(); bindVotingStatus(); }); function bindVoting() { $("#edTableToView_edTableToView_ACTION_VOTE_IMAGE").addClass("click"); $("#edTableToView_edTableToView_ACTION_VOTE_IMAGE").attr("onclick", "window.open(\"bpvoting.aspx\");") } function bindVotingStatus() { $("#edTableToView_edTableToView_ACTION_VS_IMAGE").addClass("click"); $("#edTableToView_edTableToView_ACTION_VS_IMAGE").attr("onclick", "window.open(\"bpvotingstatus.aspx\");") } </script> </form> </body> </html>