-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmPedidos.aspx
95 lines (57 loc) · 3.22 KB
/
frmPedidos.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="frmPedidos.aspx.vb" Inherits="frmPedidos" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<script src="Scripts/bootstrap-datepicker.min.js"></script>
<link href="Content/bootstrap-datepicker.min.css" rel="stylesheet" />
<style runat="server" id="estilo"></style>
<div id="page-wrapper">
<div class="row">
<link href="Content/tablanocolor.css" rel="stylesheet" />
<div class="titulolink" >
<br />
<a href ="frmInicio.aspx"><i class="fa fa-home fa-fw"></i></a>>
<a href ="#">Pedidos</a>
<br />
<br />
</div>
<script>
$('.input-group.date').datepicker({
autoclose: true, format: 'yyyy-mm-dd'
});
</script>
<div style="width: auto; overflow-x: auto;">
<div style="min-width: 600px;">
<asp:Table ID="Table1" class="table abc" runat="server" Style="width: 100%; min-width: 600px">
<asp:TableHeaderRow>
<asp:TableHeaderCell>Fecha</asp:TableHeaderCell>
<asp:TableHeaderCell>Numero de pedido</asp:TableHeaderCell>
<asp:TableHeaderCell>Comentarios</asp:TableHeaderCell>
<asp:TableHeaderCell>Importe</asp:TableHeaderCell>
<asp:TableHeaderCell>Ver documento</asp:TableHeaderCell>
</asp:TableHeaderRow>
</asp:Table>
</div>
<div style="text-align: center;" runat="server" id="PaginationDiv">
</div>
<input type="text" runat="server" id="actuacan" clientidmode="Static" style="display: none" />
<input type="text" runat="server" id="actuaid" clientidmode="Static" style="display: none" />
<button id="secretbutton" runat="server" class="btn btn-default" type="button" style="display: none">dois</button>
<button id="botonpagina" runat="server" class="btn btn-default" type="button" style="display: none">dois</button>
<input type="text" runat="server" id="idpagina" clientidmode="Static" style="display: none" />
<script>
function ver(id) {
document.getElementById("actuacan").value = 'dis';
document.getElementById("actuaid").value = id.substring(3, id.length);
document.getElementById('<%= secretbutton.ClientID%>').click();
//reload();
}
function discre(id) {
document.getElementById("idpagina").value = id.substring(3, id.length);
document.getElementById('<%= botonpagina.ClientID%>').click();
//reload();
}
</script>
</div>
</div>
</asp:Content>