-
Notifications
You must be signed in to change notification settings - Fork 5
/
JqGrid-Basico-4-DB.html
executable file
·50 lines (48 loc) · 2.01 KB
/
JqGrid-Basico-4-DB.html
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
<!DOCTYPE html >
<html lang="es">
<head>
<title>jqGrid Básico(4) - DB. </title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="css/ui.jqgrid.css" />
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/i18n/grid.locale-es.js" type="text/javascript"></script>
<script src="js/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="js/jquery-ui.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#list").jqGrid({
url: 'ajax.php',
datatype: "json",
height: "auto",
autowidth:true,
colNames:['Inv No','Date', 'Client', 'Amount','Tax','Total','Notes'],
colModel:[
{name:'id',index:'id', width:60, search:false},
{name:'invdate',index:'fecha', width:90, searchoptions:{sopt:['eq'], dataInit:function(elem){$(elem).datepicker( {dateFormat: 'yy-mm-dd'})}}},
{name:'name',index:'cliente', width:100, stype:"select", searchoptions:{value:":;test:test;test2:test2;test3:test3"}},
{name:'amount',index:'cantidad', width:80, align:"right", searchrules:{integer:true}},
{name:'tax',index:'taza', width:80, align:"right", searchrules:{integer:true}},
{name:'total',index:'total', width:80,align:"right", searchrules:{integer:true}},
{name:'note',index:'nota', width:150, sortable:false}
],
caption: "http://sosinformatico.blogspot.com",
viewrecords: true,
altRows: true,
pager:'#pager',
rowNum: 10,
rowList:[10,15,20]
}).navGrid('#pager', { view: false, del: false, add: false, edit: false, search:false},
{},//opciones edit
{}, //opciones add
{}, //opciones del
{multipleSearch:false,closeAfterSearch: true, closeOnEscape: true}//opciones search
).jqGrid("filterToolbar");
});
</script>
</head>
<body>
<table id='list'></table>
<div id='pager'></div>
</body>
</html>