项目作者: activewidgets

项目描述 :
Virtualized Svelte Data Grid
高级语言: JavaScript
项目地址: git://github.com/activewidgets/svelte.git
创建时间: 2020-02-19T20:04:43Z
项目社区:https://github.com/activewidgets/svelte

开源协议:MIT License

下载


ActiveWidgets/Svelte • Datagrid

@activewidgets/svelte" title="View this project on npm">npm version
@activewidgets/svelte" title="npm package downloads/month">npm downloads
Github issues
Github repo

ActiveWidgets is a multi-framework UI component library. This package provides virtualized datagrid component for Svelte.

Live demo / Developer guide / API reference

Datagrid demo

Installation

Add @activewidgets/svelte to your project dependencies -

  1. > npm i --save @activewidgets/svelte

Usage

Now you can import ActiveWidgets component classes -

  1. import { Datagrid } from "@activewidgets/svelte";

and use them like any standard Svelte component.

  1. <script>
  2. import { Datagrid } from '@activewidgets/svelte';
  3. import './styles.css';
  4. let rows = [
  5. { message: 'Hello, World!' }
  6. ];
  7. </script>
  8. <Datagrid {rows} ></Datagrid>

Live example | Source on github | Edit on stackblitz

Data properties

You have to provide columns and rows properties to the datagrid to show some data. The properties of each column object define how the data will be rendered -

  • field - where the cell data comes from (string|function)
  • header - column header (string|object)
  • width - column width (number, in pixels)
  • align - cell text alignment (left|right|center)
  • format - number/date format (string|function)
  • fixed - fixed (true/false) for columns on the left or right side

The style (string|object) or className properties allow to change the styling of the column and cell elements.

  1. <script>
  2. // ...
  3. const columns = [
  4. {header: 'Code', field: 'customerID', width: 80, style: 'background:#def', fixed: true},
  5. {header: 'Company Name', field: 'companyName', width: 160},
  6. {header: 'Contact', field: 'contactName', width: 120},
  7. {header: 'Title', field: 'contactTitle', width: 120},
  8. {header: 'Address', field: 'address', width: 120, align: 'right'}
  9. ];
  10. const rows = northwind.customers;
  11. </script>
  12. <Datagrid {columns} {rows} ></Datagrid>

Live example | Source on github | Edit on stackblitz

User events

In addition to the standard DOM keyboard and mouse events the datagrid emits composite
mouse event which makes it easier to find the elements affected by the user action -

  1. <script>
  2. // ...
  3. function onMouse({row}){
  4. alert(`row ${row.key} clicked!`);
  5. }
  6. </script>
  7. <Datagrid {columns} {rows} on:mouse={e => onMouse(e.detail)} />

Live example | Source on github | Edit on stackblitz

More info


ActiveWidgets