FlexGrid(컨텍스트 메뉴 포함)

Menu 컨트롤을 사용하여 Wijmo 컨트롤의 컨텍스트 메뉴(Context Menu)를 만들 수 있습니다.

아래 FlexGrid에는 몇 가지 옵션이 포함된 사용자 정의 컨텍스트 메뉴가 있습니다. 그리드를 마우스 오른쪽 버튼으로 클릭하면 해당 메뉴가 표시됩니다.

FlexGrid 알아보기 | FlexGrid API 문서

import 'bootstrap.css'; import '@grapecity/wijmo.styles/wijmo.css'; import './styles.css'; import { FlexGrid } from '@grapecity/wijmo.grid'; import { FlexGridContextMenu } from './flex-grid-context-menu'; import { getData } from './data'; document.readyState === 'complete' ? init() : window.onload = init; function init() { let theGrid = new FlexGrid('#theGrid', { showMarquee: true, allowSorting: 'MultiColumn', itemsSource: getData(100) }); new FlexGridContextMenu(theGrid); }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>MESCIUS Wijmo FlexGrid Context Menus</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="theGrid"></div> </div> </body> </html>
export function getData(cnt) { let countries = 'US,Germany,UK,Japan'.split(','); let data = []; for (var i = 0; i < cnt; i++) { data.push({ id: i, date: new Date(Date.now() - Math.random() * 10 * 24 * 3600 * 1000), country: countries[i % countries.length], active: Math.random() < .5, sales: Math.random() * 1000, expenses: Math.random() * 500 }); } return data; }
.wj-flexgrid { height: 300px; } .wj-flexgrid .wj-cell.wj-frozen { background: #FFFBDD; } .ctx-menu { padding: 3px; min-width: 120px; background: rgb(221, 250, 255); overflow: hidden; } .ctx-menu .wj-listbox-item { margin: 6px; }
import { Menu } from '@grapecity/wijmo.input'; import { CellRange, GroupRow, AllowSorting, ClipStringOptions } from '@grapecity/wijmo.grid'; import { DataType, SortDescription, CollectionViewGroup, PropertyGroupDescription, saveFile } from '@grapecity/wijmo'; import { FlexGridXlsxConverter } from '@grapecity/wijmo.grid.xlsx'; import { FlexGridPdfConverter, ScaleMode } from '@grapecity/wijmo.grid.pdf'; export class FlexGridContextMenu { constructor(grid) { let host = grid.hostElement, menu = this._buildMenu(grid); host.addEventListener('contextmenu', (e) => { // select the cell/column that was clicked let sel = grid.selection, ht = grid.hitTest(e), row = ht.getRow(); switch (ht.panel) { case grid.cells: let colIndex = ht.col; // if this is a group header, select the group column if (row instanceof GroupRow && row.dataItem instanceof CollectionViewGroup) { let gd = row.dataItem.groupDescription; if (gd instanceof PropertyGroupDescription) { let col = grid.getColumn(gd.propertyName); if (col && col.index > -1) { colIndex = col.index; } } } grid.select(ht.row, colIndex); break; case grid.columnHeaders: grid.select(sel.row, ht.col); break; case grid.rowHeaders: grid.select(ht.row, sel.col); break; default: return; // invalid panel } // show the menu for the current column if (grid.selection.col > -1) { e.preventDefault(); // cancel the browser's default menu menu.show(e); // and show ours } }, true); } _buildMenu(grid) { let menu = new Menu(document.createElement('div'), { owner: grid.hostElement, displayMemberPath: 'header', subItemsPath: 'items', commandParameterPath: 'cmd', dropDownCssClass: 'ctx-menu', openOnHover: true, closeOnLeave: true, itemsSource: [ { header: 'Sort', items: [ { header: 'Ascending', cmd: 'SRT_ASC' }, { header: 'Descending', cmd: 'SRT_DESC' }, { header: 'No Sort', cmd: 'SRT_NONE' }, { header: '-' }, { header: 'Clear All Sorts', cmd: 'SRT_CLR' } ] }, { header: '-' }, { header: 'Pin/Unpin', cmd: 'PIN' }, { header: '-' }, { header: 'AutoSize', cmd: 'ASZ' }, { header: 'AutoSize All', cmd: 'ASZ_ALL' }, { header: '-' }, { header: 'Group/Ungroup', cmd: 'GRP' }, { header: 'Clear All Groups', cmd: 'GRP_CLR' }, { header: '-' }, { header: 'Export', items: [ { header: 'CSV', cmd: 'X_CSV' }, { header: 'XLSX', cmd: 'X_XLSX' }, { header: 'PDF', cmd: 'X_PDF' }, ] } ], command: { // enable/disable menu commands canExecuteCommand: (cmd) => { let view = grid.collectionView, col = grid.columns[grid.selection.col]; switch (cmd) { case 'SRT_ASC': return col.currentSort != '+'; case 'SRT_DESC': return col.currentSort != '-'; case 'SRT_NONE': return col.currentSort != null; case 'SRT_CLR': return view.sortDescriptions.length > 0; case 'PIN': return true; // toggle pin case 'ASZ': case 'ASZ_ALL': return true; case 'GRP': return col.dataType != DataType.Number; // don't group numbers case 'GRP_CLR': return view.groupDescriptions.length > 0; } return true; }, // execute menu commands executeCommand: (cmd) => { let view = grid.collectionView, cols = grid.columns, col = cols[grid.selection.col], sd = view.sortDescriptions, gd = view.groupDescriptions; switch (cmd) { case 'SRT_ASC': case 'SRT_DESC': case 'SRT_NONE': if (grid.allowSorting != AllowSorting.MultiColumn) { sd.clear(); } else { for (let i = 0; i < sd.length; i++) { if (sd[i].property == col.binding) { sd.removeAt(i); break; } } } if (cmd != 'SRT_NONE') { sd.push(new SortDescription(col.binding, cmd == 'SRT_ASC')); } break; case 'SRT_CLR': sd.clear(); break; case 'PIN': let fCols = grid.frozenColumns; if (col.index >= fCols) { // pinning cols.moveElement(col.index, fCols, false); cols.frozen++; } else { // unpinning cols.moveElement(col.index, fCols - 1, false); cols.frozen--; } break; case 'ASZ': grid.autoSizeColumn(col.index); break; case 'ASZ_ALL': grid.autoSizeColumns(0, grid.columns.length - 1); break; case 'GRP': // remove group for (let i = 0; i < gd.length; i++) { if (gd[i].propertyName == col.binding) { gd.removeAt(i); return; // we're done } } // add group gd.push(new PropertyGroupDescription(col.binding)); break; case 'GRP_CLR': gd.clear(); break; // export case 'X_CSV': let rng = new CellRange(0, 0, grid.rows.length - 1, grid.columns.length - 1), csv = grid.getClipString(rng, ClipStringOptions.CSV, true, false); saveFile(csv, 'FlexGrid.csv'); break; case 'X_XLSX': FlexGridXlsxConverter.saveAsync(grid, null, 'FlexGrid.xlsx'); break; case 'X_PDF': FlexGridPdfConverter.export(grid, 'FlexGrid.pdf', { maxPages: 10, scaleMode: ScaleMode.PageWidth, documentOptions: { compress: true, header: { declarative: { text: '\t&[Page] of &[Pages]' } }, footer: { declarative: { text: '\t&[Page] of &[Pages]' } }, info: { author: 'MESCIUS', title: 'FlexGrid' } }, styles: { cellStyle: { backgroundColor: '#ffffff', borderColor: '#c6c6c6' }, altCellStyle: { backgroundColor: '#f9f9f9' }, groupCellStyle: { backgroundColor: '#dddddd' }, headerCellStyle: { backgroundColor: '#eaeaea' } } }); break; } // restore focus to active grid cell grid.refresh(); let sel = grid.selection, cell = grid.cells.getCellElement(sel.row, sel.col); if (cell) { cell.focus(); } } } }); // done return menu; } }
(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);