How to use the @swimlane/ngx-datatable/release/utils.getterForProp function in @swimlane/ngx-datatable

To help you get started, we’ve selected a few @swimlane/ngx-datatable 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 ceph / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / inventory / inventory-devices / inventory-devices.component.ts View on Github external
const parts = _.partition(devices, (row) => {
        // use getter from ngx-datatable for props like 'sys_api.size'
        const valueGetter = getterForProp(filter.prop);
        return `${valueGetter(row, filter.prop)}` === filter.value;
      });
      devices = parts[0];
github ceph / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / inventory / inventory-devices / inventory-devices.component.spec.ts View on Github external
const columnValues = devices.map((device: InventoryDevice) => {
          const valueGetter = getterForProp(filter.prop);
          const value = valueGetter(device, filter.prop);
          const formatValue = filter.pipe ? filter.pipe.transform(value) : value;
          return `${formatValue}`;
        });
        const expectedOptionsSet = new Set(['*', ...columnValues]);

@swimlane/ngx-datatable

ngx-datatable is an Angular table grid component for presenting large and complex data.

MIT
Latest version published 2 years ago

Package Health Score

65 / 100
Full package analysis