Editor example Parent child editor

This example demonstrates Editor being used in a parent / child manner to edit groups of related items. The code and methodology is fully documented in this blog post. A similar post is also available showing parent / child editing in a child row.

Name Users
First name Last name Phone # Location

The Javascript shown below is used to initialise the table shown in this example:

$(document).ready(function() { var siteEditor = new $.fn.dataTable.Editor( { ajax: "../../controllers/sites.php", table: "#sites", fields: [ { label: "Site name:", name: "name" } ] } ); window.editor = siteEditor; // for demo only! var siteTable = $('#sites').DataTable( { dom: "Bfrtip", ajax: "../../controllers/sites.php", columns: [ { data: 'name' }, { data: 'users', render: function ( data ) { return data.length; } } ], select: { style: 'single' }, buttons: [ { extend: "create", editor: siteEditor }, { extend: "edit", editor: siteEditor }, { extend: "remove", editor: siteEditor } ] } ); var usersEditor = new $.fn.dataTable.Editor( { ajax: { url: '../../controllers/users.php', data: function ( d ) { var selected = siteTable.row( { selected: true } ); if ( selected.any() ) { d.site = selected.data().id; } } }, table: '#users', fields: [ { label: "First name:", name: "users.first_name" }, { label: "Last name:", name: "users.last_name" }, { label: "Phone #:", name: "users.phone" }, { label: "Site:", name: "users.site", type: "select", placeholder: "Select a location" } ] } ); var usersTable = $('#users').DataTable( { dom: 'Bfrtip', ajax: { url: '../../controllers/users.php', type: 'post', data: function ( d ) { var selected = siteTable.row( { selected: true } ); if ( selected.any() ) { d.site = selected.data().id; } } }, columns: [ { data: 'users.first_name' }, { data: 'users.last_name' }, { data: 'users.phone' }, { data: 'sites.name' } ], select: true, buttons: [ { extend: 'create', editor: usersEditor }, { extend: 'edit', editor: usersEditor }, { extend: 'remove', editor: usersEditor } ] } ); siteTable.on( 'select', function (e) { usersTable.ajax.reload(); usersEditor .field( 'users.site' ) .def( siteTable.row( { selected: true } ).data().id ); } ); siteTable.on( 'deselect', function () { usersTable.ajax.reload(); } ); usersEditor.on( 'submitSuccess', function () { siteTable.ajax.reload(); } ); siteEditor.on( 'submitSuccess', function () { usersTable.ajax.reload(); } ); } );

In addition to the above code, the following Javascript library files are loaded for use in this example:

The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:

This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:

The following CSS library files are loaded for use in this example to provide the styling of the table:

This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.

The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using the protocol described in the DataTables documentation.