How to use the @jupyterlab/csvviewer.GridSearchService function in @jupyterlab/csvviewer

To help you get started, we’ve selected a few @jupyterlab/csvviewer examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jupyterlab / jupyterlab / tests / test-csvviewer / src / widget.spec.ts View on Github external
function createGridSearchService(model: JSONModel): GridSearchService {
      const grid = new DataGrid();
      grid.dataModel = model;
      return new GridSearchService(grid);
    }
github jupyterlab / jupyterlab-data-explorer / tests / test-csvviewer / src / widget.spec.ts View on Github external
function createGridSearchService(model: JSONModel): GridSearchService {
      const grid = new DataGrid();
      grid.model = model;
      return new GridSearchService(grid);
    }