/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/usercontrols/scrollgrid.ascx
44 строки
2 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="scrollGrid.ascx.vb" Inherits="UserControls_scrollGrid" %> <link rel='stylesheet' type='text/css' href='Styles/StaticHeader.css' /> <script type='text/javascript' src='Styles/x.js'></script> <script type='text/javascript' src='Styles/xtableheaderfixed.js'></script> <script type='text/javascript'> xAddEventListener(window, 'load', function () { new xTableHeaderFixed('gvTheGrid', 'table_container', 0); }, false); window.onload = function () { var h = document.getElementById("<%=keep.ClientID%>"); document.getElementById("table_container").scrollTop = h.value; //alert(h.value); } function SetDivPosition() { var intY = document.getElementById("table_container").scrollTop; var h = document.getElementById("<%=keep.ClientID%>"); h.value = intY; } </script> <%--<asp:UpdatePanel ID="upFilters" runat="server"> <ContentTemplate>--%> <asp:PlaceHolder ID="phFilters" runat="server"></asp:PlaceHolder> <%-- </ContentTemplate> </asp:UpdatePanel>--%> <asp:HiddenField ID="keep" runat="server" /> <div style="margin: 0 auto; text-align: center"> <asp:Label runat="server" ID="lblCaption"></asp:Label> </div> <div id='table_container' onscroll="SetDivPosition()" runat ="server" ClientIdMode="Static"> <%--<asp:UpdatePanel ID="upBody" runat="server"> <ContentTemplate>--%> <asp:GridView ID="gvTheGrid" runat="server" CaptionAlign="Top" CssClass="gvTheGrid" EnableViewState="False" ShowFooter="True" ShowHeaderWhenEmpty="True" PagerStyle-HorizontalAlign="Center" PagerStyle-VerticalAlign="Middle" PagerSettings-Mode="NumericFirstLast"> <PagerSettings Mode="NumericFirstLast"></PagerSettings> <PagerStyle HorizontalAlign="Center" VerticalAlign="Middle"></PagerStyle> <SelectedRowStyle BackColor="#CCCCCC" /> </asp:GridView> <%--</ContentTemplate> </asp:UpdatePanel>--%> </div>