Orders Slip

This sample demonstrates a Orders Slip view created with the MultiRow control.

Learn about MultiRow | MultiRow API Reference

import 'bootstrap.css'; import '@grapecity/wijmo.styles/wijmo.css'; import './styles.css'; import * as wjCore from '@grapecity/wijmo'; import * as wjPdf from '@grapecity/wijmo.pdf'; import * as wjMultiRow from '@grapecity/wijmo.grid.multirow'; import * as wjGridXlsx from '@grapecity/wijmo.grid.xlsx'; import * as wjGridPdf from '@grapecity/wijmo.grid.pdf'; import { generateOrdersSlipData } from './data'; // document.readyState === 'complete' ? init() : window.onload = init; // function init() { let data = generateOrdersSlipData(); let ordersSlip = new wjMultiRow.MultiRow('#ordersSlip', { itemsSource: data, layoutDefinition: generateLayoutDef() }); let cv = ordersSlip.collectionView; cv.collectionChanged.addHandler((sender, e) => { let unitPrice, quantity; if (e.action === wjCore.NotifyCollectionChangedAction.Change && !!e.item) { unitPrice = +e.item.unitPrice; quantity = +e.item.quantity; if (!isNaN(unitPrice) && !isNaN(quantity)) { e.item.amount = unitPrice * quantity; } } }); // Generate the layout definition for the MultiRow control. function generateLayoutDef() { return [ { colspan: 3, cells: [ { binding: 'productId', header: 'Product ID', width: 90 }, { binding: 'categoryId', header: 'Category ID', width: 90 }, { binding: 'categoryName', header: 'Category', width: 90 }, { binding: 'productName', header: 'Product Name', colspan: 3 } ] }, { cells: [ { binding: 'quantity', header: 'Quantity', width: 140 }, { binding: 'packageUnit', header: 'Package Unit', width: 140 } ] }, { cells: [ { binding: 'unitPrice', header: 'Unit Price', format: 'c2', width: 80 } ] }, { cells: [ { binding: 'amount', header: 'Amount', isReadOnly: true, format: 'c2', width: 80 } ] }, { cells: [ { binding: 'shippingId', header: 'Shipping ID', width: 100 }, { binding: 'discontinued', header: 'Discontinued', width: 100 } ] }, { cells: [ { binding: 'remarks', header: 'Remarks', width: 280 }, { binding: 'description', header: 'Product Description', width: 280 } ] } ]; } document.querySelector('#exportXlsx').addEventListener('click', () => { wjGridXlsx.FlexGridXlsxConverter.saveAsync(ordersSlip, null, 'OrdersSlip.xlsx'); }); document.querySelector('#exportPdf').addEventListener('click', () => { let doc = new wjPdf.PdfDocument({ header: { declarative: { text: '\t&[Page]\\&[Pages]' } }, footer: { declarative: { text: '\t&[Page]\\&[Pages]' } }, ended: function (sender, args) { wjPdf.saveBlob(args.blob, 'OrdersSlip.pdf'); } }), settings = { styles: { cellStyle: { backgroundColor: '#ffffff', borderColor: '#c6c6c6' }, altCellStyle: { backgroundColor: '#C0FFC0' }, headerCellStyle: { backgroundColor: '#eaeaea' } } }; wjGridPdf.FlexGridPdfConverter.draw(ordersSlip, doc, null, null, settings); doc.end(); }); }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>MESCIUS Wijmo MultiRow Orders Slip</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- SystemJS --> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="systemjs.config.js"></script> <script> System.import('./src/app'); </script> </head> <body> <div class="container-fluid"> <div id="ordersSlip"></div> <div class="btn-group"> <button class="btn btn-default" id="exportXlsx"> Export to Excel </button> <button class="btn btn-default" id="exportPdf"> Export to PDF </button> </div> </div> </body> </html>
export function generateOrdersSlipData() { return [ { productId: 1, productName: 'Chai', categoryId: 1, categoryName: 'Beverages', quantity: 100, packageUnit: '10 boxes x 20 bags', unitPrice: 18, amount: 100 * 18, shippingId: 1, discontinued: false, remarks: '', description: 'Soft drinks, coffees, teas, beers, and ales' }, { productId: 2, productName: 'Chang', categoryId: 1, categoryName: 'Beverages', quantity: 120, packageUnit: '24 - 12 oz bottles', unitPrice: 19, amount: 120 * 19, shippingId: 1, discontinued: false, remarks: '', description: 'Soft drinks, coffees, teas, beers, and ales' }, { productId: 3, productName: 'Aniseed Syrup', categoryId: 2, categoryName: 'Condiments', quantity: 80, packageUnit: '12 - 550 ml bottles', unitPrice: 10, amount: 100 * 18, shippingId: 1, discontinued: false, remarks: '', description: '' }, { productId: 4, productName: 'Chef Anton\'s Gumbo Mix', categoryId: 2, categoryName: 'Condiments', quantity: 125, packageUnit: '36 boxes', unitPrice: 21.35, amount: 125 * 21.35, shippingId: 2, discontinued: false, remarks: '', description: '' }, { productId: 5, productName: 'Uncle Bob\'s Organic Dried Pears', categoryId: 7, categoryName: 'Produce', quantity: 60, packageUnit: '12 - 1 lb pkgs', unitPrice: 30, amount: 30 * 60, shippingId: 2, discontinued: false, remarks: '', description: 'Dried fruit and bean curd' }, { productId: 6, productName: 'Mishi Kobe Niku', categoryId: 6, categoryName: 'Meat/Poultry', quantity: 25, packageUnit: '18 - 500 g pkgs', unitPrice: 97, amount: 25 * 97, shippingId: 4, discontinued: true, remarks: '', description: 'Prepared meats' }, { productId: 7, productName: 'Ikura', categoryId: 8, categoryName: 'Seafood', quantity: 60, packageUnit: '12 - 200 ml jars', unitPrice: 31, amount: 60 * 31, shippingId: 4, discontinued: false, remarks: '', description: 'Seaweed and fish' }, { productId: 8, productName: 'Queso Cabrales', categoryId: 4, categoryName: 'Dairy Products', quantity: 90, packageUnit: '1 kg pkg', unitPrice: 21, amount: 90 * 21, shippingId: 5, discontinued: false, remarks: '', description: 'Cheeses' } ]; }
.wj-multirow { height: 400px; margin: 6px 0; }
(function (global) { System.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, meta: { '*.css': { loader: 'css' } }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, // map tells the System loader where to look for things map: { 'jszip': 'npm:jszip/dist/jszip.js', '@grapecity/wijmo': 'npm:@grapecity/wijmo/index.js', '@grapecity/wijmo.input': 'npm:@grapecity/wijmo.input/index.js', '@grapecity/wijmo.styles': 'npm:@grapecity/wijmo.styles', '@grapecity/wijmo.cultures': 'npm:@grapecity/wijmo.cultures', '@grapecity/wijmo.chart': 'npm:@grapecity/wijmo.chart/index.js', '@grapecity/wijmo.chart.analytics': 'npm:@grapecity/wijmo.chart.analytics/index.js', '@grapecity/wijmo.chart.animation': 'npm:@grapecity/wijmo.chart.animation/index.js', '@grapecity/wijmo.chart.annotation': 'npm:@grapecity/wijmo.chart.annotation/index.js', '@grapecity/wijmo.chart.finance': 'npm:@grapecity/wijmo.chart.finance/index.js', '@grapecity/wijmo.chart.finance.analytics': 'npm:@grapecity/wijmo.chart.finance.analytics/index.js', '@grapecity/wijmo.chart.hierarchical': 'npm:@grapecity/wijmo.chart.hierarchical/index.js', '@grapecity/wijmo.chart.interaction': 'npm:@grapecity/wijmo.chart.interaction/index.js', '@grapecity/wijmo.chart.radar': 'npm:@grapecity/wijmo.chart.radar/index.js', '@grapecity/wijmo.chart.render': 'npm:@grapecity/wijmo.chart.render/index.js', '@grapecity/wijmo.chart.webgl': 'npm:@grapecity/wijmo.chart.webgl/index.js', '@grapecity/wijmo.chart.map': 'npm:@grapecity/wijmo.chart.map/index.js', '@grapecity/wijmo.gauge': 'npm:@grapecity/wijmo.gauge/index.js', '@grapecity/wijmo.grid': 'npm:@grapecity/wijmo.grid/index.js', '@grapecity/wijmo.grid.detail': 'npm:@grapecity/wijmo.grid.detail/index.js', '@grapecity/wijmo.grid.filter': 'npm:@grapecity/wijmo.grid.filter/index.js', '@grapecity/wijmo.grid.search': 'npm:@grapecity/wijmo.grid.search/index.js', '@grapecity/wijmo.grid.grouppanel': 'npm:@grapecity/wijmo.grid.grouppanel/index.js', '@grapecity/wijmo.grid.multirow': 'npm:@grapecity/wijmo.grid.multirow/index.js', '@grapecity/wijmo.grid.transposed': 'npm:@grapecity/wijmo.grid.transposed/index.js', '@grapecity/wijmo.grid.transposedmultirow': 'npm:@grapecity/wijmo.grid.transposedmultirow/index.js', '@grapecity/wijmo.grid.pdf': 'npm:@grapecity/wijmo.grid.pdf/index.js', '@grapecity/wijmo.grid.sheet': 'npm:@grapecity/wijmo.grid.sheet/index.js', '@grapecity/wijmo.grid.xlsx': 'npm:@grapecity/wijmo.grid.xlsx/index.js', '@grapecity/wijmo.grid.selector': 'npm:@grapecity/wijmo.grid.selector/index.js', '@grapecity/wijmo.grid.cellmaker': 'npm:@grapecity/wijmo.grid.cellmaker/index.js', '@grapecity/wijmo.nav': 'npm:@grapecity/wijmo.nav/index.js', '@grapecity/wijmo.odata': 'npm:@grapecity/wijmo.odata/index.js', '@grapecity/wijmo.olap': 'npm:@grapecity/wijmo.olap/index.js', '@grapecity/wijmo.rest': 'npm:@grapecity/wijmo.rest/index.js', '@grapecity/wijmo.pdf': 'npm:@grapecity/wijmo.pdf/index.js', '@grapecity/wijmo.pdf.security': 'npm:@grapecity/wijmo.pdf.security/index.js', '@grapecity/wijmo.viewer': 'npm:@grapecity/wijmo.viewer/index.js', '@grapecity/wijmo.xlsx': 'npm:@grapecity/wijmo.xlsx/index.js', '@grapecity/wijmo.undo': 'npm:@grapecity/wijmo.undo/index.js', '@grapecity/wijmo.interop.grid': 'npm:@grapecity/wijmo.interop.grid/index.js', '@grapecity/wijmo.touch': 'npm:@grapecity/wijmo.touch/index.js', '@grapecity/wijmo.cloud': 'npm:@grapecity/wijmo.cloud/index.js', '@grapecity/wijmo.barcode': 'npm:@grapecity/wijmo.barcode/index.js', '@grapecity/wijmo.barcode.common': 'npm:@grapecity/wijmo.barcode.common/index.js', '@grapecity/wijmo.barcode.composite': 'npm:@grapecity/wijmo.barcode.composite/index.js', '@grapecity/wijmo.barcode.specialized': 'npm:@grapecity/wijmo.barcode.specialized/index.js', 'jszip': 'npm:jszip/dist/jszip.js', 'bootstrap.css': 'npm:bootstrap/dist/css/bootstrap.min.css', 'css': 'npm:systemjs-plugin-css/css.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', 'systemjs-babel-build':'npm:systemjs-plugin-babel/systemjs-babel-browser.js' }, // packages tells the System loader how to load when no filename and/or no extension packages: { src: { defaultExtension: 'js' }, "node_modules": { defaultExtension: 'js' }, } }); })(this);