www/js/prod_archive_name.js

changeset 833
bdef871e6db7
equal deleted inserted replaced
832:2641860ad61d 833:bdef871e6db7
1 /*****************************************************************************
2 * Copyright (C) 2019
3 *
4 * Michiel Broek <mbroek at mbse dot eu>
5 *
6 * This file is part of BMS
7 *
8 * This is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * BrewCloud is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with ThermFerm; see the file COPYING. If not, write to the Free
20 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *****************************************************************************/
22
23
24 $(document).ready(function() {
25 var source = {
26 datatype: 'json',
27 cache: false,
28 datafields: [
29 { name: 'record', type: 'number' },
30 { name: 'name', type: 'string' },
31 { name: 'code', type: 'string' },
32 { name: 'date', type: 'string' },
33 { name: 'style', type: 'string' },
34 { name: 'og', type: 'float' },
35 { name: 'fg', type: 'float' },
36 { name: 'batch_size', type: 'float' },
37 ],
38 id: 'record',
39 url: 'includes/db_product.php?select=archname'
40 },
41 dataAdapter = new $.jqx.dataAdapter(source);
42
43 // initialize jqxGrid
44 $('#jqxgrid').jqxGrid({
45 width: 1280,
46 height: 630,
47 source: dataAdapter,
48 theme: theme,
49 columns: [
50 { text: 'Naam', datafield: 'name' },
51 { text: 'Stijl', datafield: 'style', width: 250 },
52 { text: 'OG', datafield: 'og', width: 80, cellsformat: 'f3' },
53 { text: 'FG', datafield: 'fg', width: 80, cellsformat: 'f3' },
54 { text: 'Datum', datafield: 'date', width: 120 },
55 { text: 'Code', datafield: 'code', width: 100 },
56 { text: 'Liters', datafield: 'batch_size', width: 80, align: 'right', cellsalign: 'right', cellsformat: 'f1' },
57 { text: '', datafield: 'Edit', width: 80, align: 'center', columntype: 'button', cellsrenderer: function() {
58 return 'Bekijk';
59 }, buttonclick: function(row) {
60 var datarecord = dataAdapter.records[row];
61 window.location.href = 'prod_view.php?record=' + datarecord.record + '&select=archname&return=prod_archive_name.php';
62 }
63 }
64 ],
65 });
66 });

mercurial