Skip to content
This repository was archived by the owner on May 30, 2021. It is now read-only.

Plugins

Karl edited this page Oct 5, 2017 · 13 revisions

Example plugin:

DataTable.extend("myPlugin", function(options) {

    /**
     * Main lib
     */
    var myPlugin = function() {
        //
    };

    /**
     * Init instance (required)
     */
    myPlugin.prototype.init = function() {
        //
    };

    return new myPlugin();
}

Clone this wiki locally