Manufacturing Process

The following sample shows how you can use the SpreadJS spreadsheet to record all the information needed to oversee your manufacturing operation.

Description
app.js
index.html
styles.css
Copy to CodeMine

This example loads a predefined template using fromJSON. It highlights the use of conditional formatting, sparklines, shapes, dropdowns and hyperlinks.

First Sheet

Here we have the separation of the sales orders into 3 categories: Last month, This month and Next month. The sample uses cell dropdowns, including:

It also uses conditional formatting and hyperlinks.

Second Sheet

This sheet uses shapes to create a manufacturing process workflow.

This example loads a predefined template using fromJSON. It highlights the use of conditional formatting, sparklines, shapes, dropdowns and hyperlinks. First Sheet Here we have the separation of the sales orders into 3 categories: Last month, This month and Next month. The sample uses cell dropdowns, including: DateTime Picker - due date column, the time is omitted. Color Picker - color column. List - the status column. It also uses conditional formatting and hyperlinks. Second Sheet This sheet uses shapes to create a manufacturing process workflow.
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"), { sheetCount: 5 }); initSpread(spread); }; function initSpread(spread) { if (!spread) { return; } spread.suspendPaint(); spread.fromJSON(data); spread.resumePaint(); }
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets-shapes/dist/gc.spread.sheets.shapes.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/data/man-process.js" type="text/javascript"></script> <script src="app.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="sample-tutorial"> <div id="ss" style="width:100%;height:100%"></div> </div> </body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }