update buttons area puath & docs
This commit is contained in:
@@ -293,6 +293,9 @@
|
||||
<Content Include="images\apply_l.png" />
|
||||
<Content Include="images\apply_m.png" />
|
||||
<Content Include="images\apply_s.png" />
|
||||
<Content Include="images\Archive_l.png" />
|
||||
<Content Include="images\Archive_m.png" />
|
||||
<Content Include="images\Archive_s.png" />
|
||||
<Content Include="images\Archivio.png" />
|
||||
<Content Include="images\arrDown_l.png" />
|
||||
<Content Include="images\arrDown_m.png" />
|
||||
|
||||
@@ -10,20 +10,6 @@ namespace ETS_WS
|
||||
{
|
||||
public partial class MyDocs : System.Web.UI.Page
|
||||
{
|
||||
/// <summary>
|
||||
/// salvo countDown upload in corso...
|
||||
/// </summary>
|
||||
protected int countDown
|
||||
{
|
||||
get
|
||||
{
|
||||
return utils.obj.IntSessionObj("countDown");
|
||||
}
|
||||
set
|
||||
{
|
||||
utils.obj.setSessionVal("countDown", value);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// caricamento pagina
|
||||
/// </summary>
|
||||
@@ -67,7 +53,7 @@ namespace ETS_WS
|
||||
/// <param name="e"></param>
|
||||
void mod_fileUpload1_eh_fileCaricato(object sender, EventArgs e)
|
||||
{
|
||||
countDown = utils.obj.confReadInt("countDownUploadFile");
|
||||
// finito di caricare un SINGOLO file...
|
||||
}
|
||||
/// <summary>
|
||||
/// fix panel visibility
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
</div>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="clearDiv" style="text-align: center; padding: 2px 0px 4px 0px;">
|
||||
<div class="clearDiv" style="text-align: center; padding: 4px 0px 4px 0px; background: #EFEFEF;">
|
||||
<div class="divDx">
|
||||
<asp:UpdateProgress ID="updtRicerca" runat="server" DisplayAfter="10" DynamicLayout="true">
|
||||
<ProgressTemplate>
|
||||
@@ -28,24 +28,21 @@
|
||||
</ProgressTemplate>
|
||||
</asp:UpdateProgress>
|
||||
</div>
|
||||
<asp:Button ID="btnUpdate" runat="server" Text="Aggiorna" CssClass="submit" TabIndex="11" OnClick="btnUpdate_Click" />
|
||||
<asp:Button ID="btnUpdate" runat="server" Text="Aggiorna" TabIndex="11" OnClick="btnUpdate_Click" CssClass="btnUpdate" />
|
||||
|
||||
<asp:Button ID="btnSubmit" runat="server" Text="Archivia" CssClass="submit" OnClick="btnSubmit_Click" TabIndex="12" />
|
||||
<asp:Button ID="btnSubmit" runat="server" Text="Archivia" OnClick="btnSubmit_Click" TabIndex="12" CssClass="btnArchivia" />
|
||||
</div>
|
||||
<div class="clearDiv" style="text-align: center; padding: 2px 0px 4px 0px;">
|
||||
<div class="clearDiv" style="text-align: center; background: #DEDEDE; border-top: 1px solid #999999; border-bottom: 1px solid #999999;">
|
||||
<asp:Panel runat="server" ID="pnlGenDocs">
|
||||
generatore doc:
|
||||
<asp:Button ID="btnStaccaProto" runat="server" Text="Solo Protocollo" ToolTip="Genera e blocca protocollo" CssClass="btnGenProto" TabIndex="13" OnClick="btnStaccaProto_Click" />
|
||||
|
||||
<asp:Button ID="btnGenLettera" runat="server" Text="Lettera" ToolTip="Genera doc tipo lettera" CssClass="btnGenDoc" TabIndex="14" OnClick="btnGenLettera_Click" />
|
||||
|
||||
<asp:Button ID="btnGenFax" runat="server" Text="Fax" ToolTip="Genera doc tipo Fax" CssClass="btnGenFax" TabIndex="15" OnClick="btnGenFax_Click" />
|
||||
|
||||
<asp:Button ID="btnGenMail" runat="server" Text="Email" ToolTip="Genera email" CssClass="btnGenMail" TabIndex="16" OnClick="btnGenMail_Click" OnClientClick="mailTo()" />
|
||||
<script type="text/javascript">
|
||||
function mailTo() {
|
||||
location.href = 'mailto:info@steamware.net?subject=protocollo&body=email protocollo';
|
||||
}
|
||||
</script>
|
||||
<div style="padding: 4px 0px 4px 0px;">
|
||||
generatore doc:
|
||||
<asp:Button ID="btnStaccaProto" runat="server" Text="Solo Protocollo" ToolTip="Genera e blocca protocollo" CssClass="btnGenProto" TabIndex="13" OnClick="btnStaccaProto_Click" />
|
||||
|
||||
<asp:Button ID="btnGenLettera" runat="server" Text="Lettera" ToolTip="Genera doc tipo lettera" CssClass="btnGenDoc" TabIndex="14" OnClick="btnGenLettera_Click" />
|
||||
|
||||
<asp:Button ID="btnGenFax" runat="server" Text="Fax" ToolTip="Genera doc tipo Fax" CssClass="btnGenFax" TabIndex="15" OnClick="btnGenFax_Click" />
|
||||
|
||||
<asp:Button ID="btnGenMail" runat="server" Text="Email" ToolTip="Genera email" CssClass="btnGenMail" TabIndex="16" OnClick="btnGenMail_Click" />
|
||||
</asp:Panel>
|
||||
</div>
|
||||
</div>
|
||||
Binary file not shown.
@@ -132,6 +132,34 @@
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnUpdate
|
||||
{
|
||||
background-image: url(/images/reload_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #DEDEDE;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnArchivia
|
||||
{
|
||||
background-image: url(/images/Archive_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #DD9977;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
/* end buttons! */
|
||||
|
||||
/* update controls */
|
||||
|
||||
@@ -132,6 +132,34 @@
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnUpdate
|
||||
{
|
||||
background-image: url(/images/reload_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #DEDEDE;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnArchivia
|
||||
{
|
||||
background-image: url(/images/Archive_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #DD9977;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
/* end buttons! */
|
||||
|
||||
/* update controls */
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 971 B |
Binary file not shown.
|
After Width: | Height: | Size: 674 B |
Reference in New Issue
Block a user