Code Monkey home page Code Monkey logo

editable_datatable's Introduction

editable_datatable

A plug in for jquery DataTables to enable inline editing

Basic Usage

$('#my-table').DataTable().editable_table();

Options

beforeEditStart

Callback invoked before beginning to edit a row. The order of execution is:

  1. user clicks a row to edit
  2. any rows currently being edited (any tr with class beingEdited) are saved (DataTables internal data is updated with the contents of the input fields).
  3. beforeEditStart is called, if present.
  4. beingEdited class is applied to the tr to be edited
  5. input fields are created
  6. afterEditStart is called, if present.

If beforeEditStart returns false, then editing does not start.

$('#my-table').DataTable().editable_table({
  beforeEditStart: function() {
    if (cant_edit_right_now) { return false; }
    console.log('Editing starting.');
  }
});

afterEditStart

Callback invoked after the user begins editing a row (after the input fields have been created).

$('#my-table').DataTable().editable_table({
  afterEditStart: function(aData, tr) {
    $tr.addClass('edit-highlight');
    aData.modified = true;
  }
});

Commands

close

Use this command to end editing. Input fields are removed, and user input is copied to DataTables' internal data.

$('#my-table').DataTable().editable_table('close');

editable_datatable's People

Contributors

mikevm avatar

Stargazers

Slava.Aurim avatar

Watchers

 avatar  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.