msjTable is a jQuery plugin forked from jTable, to create AJAX based CRUD tables without coding HTML or Javascript.
- Record Preview feature :
$("#myjtable").jtable({
...,
recordPreview : true, // setting recordPreview to true, a view icon will appeare beside edit icon in each row
...,
fields : {
...,
first_name : {
title : 'First name',
edit : true,
create : true,
preview : true, // specify which field you want to be shown in preview dialog
type : 'text'
},
...
});
- Multi columns form for Create, Edit and Preview dialogs.
$("#myjtable").jtable({
...,
createFormColumns : 2, // set the number of columns in new record dialog
editFormColumns : 2, // set the number of columns in edit record dialog
viewFormColumns : 2, // set the number of columns in record preview dialog
...
});
- You can send any required fields to row-delete-request POST data (jTable only sends single key field)
Read More about additional features here
lib folder contains files necessary to use jTable.
dev folder contains parts of library helpful for development of jTable.
See http://www.jtable.org for documentation, demos, themes and more...