Files
Samuele Locatelli ba8eef2aeb COmpletata review pagina BatchPreview
-- fix grafici
- ingrandimento generale
- fix pagina che debordava
- paginazione lista sheets
2025-06-18 08:36:07 +02:00

33 lines
1.8 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_footer.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_footer" %>
<footer class="fixed-bottom bg-dark text-light textCondens">
<asp:UpdatePanel runat="server" ID="upnlFooter" UpdateMode="Conditional" ChildrenAsTriggers="true">
<ContentTemplate>
<div class="d-flex justify-content-between px-1">
<div class="px-1 text-nowrap">
<asp:Label ID="lblDateTime" runat="server" Text="..." />
&nbsp;|&nbsp;
<asp:Label ID="lblCodOperatore" runat="server" Text="-" />
</div>
<div class="px-1 text-right text-nowrap">
<div class="d-flex">
<div class="px-1">
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="5" DynamicLayout="false">
<ProgressTemplate>
<i class="fa fa-circle-o-notch fa-spin fa-fw text-primary" aria-hidden="true"></i>
<i class="fa fa-circle-o-notch fa-spin fa-fw text-info" aria-hidden="true"></i>
<i class="fa fa-circle-o-notch fa-spin fa-fw" aria-hidden="true"></i>
</ProgressTemplate>
</asp:UpdateProgress>
</div>
<div class="px-1">
<asp:Label runat="server" ID="lblApp" Text="0.0.0.0" />
</div>
</div>
</div>
</div>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
</ContentTemplate>
</asp:UpdatePanel>
</footer>