Coder Social home page Coder Social logo

rakhithjk / sensei-grid Goto Github PK

View Code? Open in Web Editor NEW

This project forked from datazenit/sensei-grid

0.0 1.0 0.0 3.07 MB

Simple and lightweight data grid in JS/HTML

Home Page: http://datazenit.com/static/sensei-grid/examples/index.html

License: MIT License

JavaScript 89.24% CSS 8.62% HTML 2.01% Shell 0.12%

sensei-grid's Introduction

Sensei Grid Build Status

Simple data grid library written in JavaScript. The data grid is part of Datazenit, a web-based database administration tool.

Dependencies: jQuery and underscore.js/lodash. The example in this repository also uses Twitter Bootstrap for default styles.

Demo and Screenshot

Demo: http://datazenit.com/static/sensei-grid/examples/index.html

Sensei Grid Screenshot

Goals

  • Simplicity: Sensei Grid will be a single purpose data grid without unrelated functionality.
  • Small code base: Bloatware and dirty workarounds/hacks will be avoided as much as possible to keep the code base small and tidy.
  • Extensibility: Even though Sensei Grid will be kept simple, we will put serious effort to make it easy to extend and customize.
  • Stability: Sensei Grid is backed by Datazenit, meaning that the project is financially supported and will be constantly maintained and improved.

Installation

The simplest way to get all necessary files is via bower: bower install sensei-grid. If you don't want to use bower, just download an archive from the latest release page or clone the whole repository.

When you have obtained a copy of Sensei Grid, you must include all dependecies, sensei-grid.js and sensei-grid.css. Sensei Grid depends on jQuery and lodash/underscore.js. For your convenience all dependecies can be found in lib/ folder.

Warning: By default Sensei Grid does not apply any styles to the table. It means that you need to create your own stylesheet or you can just use bootstrap.css as shown in the example below.

<link rel="stylesheet" type="text/css" href="dist/css/sensei-grid.css"/>
<link rel="stylesheet" type="text/css" href="lib/bootstrap/dist/css/bootstrap.min.css"/>

<script src="lib/jquery/dist/jquery.min.js"></script>
<script src="lib/lodash/lodash.min.js"></script>
<script src="dist/sensei-grid.js"></script>

Basic Usage

Define your data array. Each row is represented by an object.

var data = [
    {id: 1, title: "test"},
    {id: 2, title: "foo bar"}
];

Currently it is mandatory to define columns in a separate array for Sensei Grid to work

var columns = [
    {name: "id", type: "string"},
    {name: "title", type: "string"}
];

Initialize grid with data and columns

var grid = $(".example").grid(data, columns);

Register at least one editor (BasicEditor is bundled with Sensei Grid)

grid.registerEditor(BasicEditor);

Render data grid in .example container.

grid.render();

Bundled editors

By default Sensei Grid is bundled with several grid editors that can be registered for a data grid.

List of available editors:

  • BasicEditor - simple text field to edit basic data
  • BooleanEditor - checkbox editor for boolean values (true/false)
  • TextareaEditor - large text field for editing large text
  • SelectEditor - dropdown select box to choose a value from a list
  • DateEditor - datetime editor to choose a specific date from a calendar, provided by pickadate.js
  • DisabledEditor - sample editor that can't be edited
  • [new] AutocompleteEditor - text field with autocomplete support, based on typeahead.js

Blog posts

Roadmap

Planned for the upcoming releases:

  • Delete/duplicate row keyboard shortcut
  • New row support
  • Event callbacks (e.g., save, load, render)
  • Field types (e.g., string, int, float)
  • Optional column definition (if the structure of data is simple, assume default column settings)
  • Firefox compatibility issues
  • More configuration parameters for grid
  • Example editor for specific field types (an example select box editor can be found in examples/example.js)
  • Touch support for mobile devices
  • Column sorting callbacks
  • Column resizing (to be discussed)
  • Implement undo/redo (to be discussed)

sensei-grid's People

Contributors

lauris avatar jamestaylr avatar dvdme avatar

Watchers

 avatar

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.