Giter Club home page Giter Club logo

svelte's Introduction

ActiveWidgets/Svelte • Datagrid

npm version 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 -

> npm i --save @activewidgets/svelte

Usage

Now you can import ActiveWidgets component classes -

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

and use them like any standard Svelte component.

<script>

import { Datagrid } from '@activewidgets/svelte';
import './styles.css';

let rows = [
    { message: 'Hello, World!' }
];

</script>

<Datagrid {rows} />

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.

<script>
// ...

const columns = [
  {header: 'Code', field: 'customerID', width: 80, style: 'background:#def', fixed: true},
  {header: 'Company Name', field: 'companyName', width: 160},
  {header: 'Contact', field: 'contactName', width: 120},
  {header: 'Title', field: 'contactTitle', width: 120},
  {header: 'Address', field: 'address', width: 120, align: 'right'}
];

const rows = northwind.customers;

</script>

<Datagrid {columns} {rows} />

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 -

<script>
// ...

function onMouse({row}){
    alert(`row ${row.key} clicked!`);
}

</script>

<Datagrid {columns} {rows} on:mouse={e => onMouse(e.detail)} />

Live example | Source on github | Edit on stackblitz

More info


ActiveWidgets

svelte's People

Contributors

xkam avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

svelte's Issues

Licencing contradiction.

You appear to have some pretty contradictory licensing going on here.

The code base is licensed under MIT, but the documentation claims the need for a commercial license.

I realise this is probably intended as an upgrade thing (I mean, the MIT license is pretty clear), but perhaps some clearer language on why someone would choose to use the commercial version , what the added features are etc, would be useful?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.