Notes

  • This widget can not be applied to the original plugin and requires jQuery 1.7+ and a browser that supports contenteditable attributes (almost all modern browsers)

  • In v2.23.0, the editable_columns option will now accept a string with both ranges and single columns, e.g. '1,3-5,7'.
  • In v2.22.2,
    • Shift+Enter can now be used to start a new line even if editable_enterToAccept is true.
    • Sorting is now delayed until the editable content has been updated in the cache. This no longer relies on hovering over the table header as this would not be adequate on touch devices.
  • In v2.22.0,
    • The cell content now only automatically updates when the user hovers over the table header. Prior to this version, the automatic update would occur when the mouse left the tbody of the table. The reason this is necessary is because initiating a sort would change the row indexing set prior to the cell content being updated, so the cache would end up not matching the table content.
    • Modified the editable_trimContent option to only trim content when set.
    • The widget now works with the contenteditable html (using jQuery's .html()); previously, the widget would only manipulate the text (using jQuery .text()), so any HTML would get stripped out.
      *Note* Because of this change, if the user presses Enter, a <div> will be automatically inserted by the browser (not the widget) and any content entered will be added inside this "new line" div. If this is undesirable, use the editable_blur callback to modify the content.
    • If the cell content is already wrapped in a div or span, that element will be made contenteditable. Otherwise any direct children of the table cell will be made contenteditable; prior to this update, all direct child elements (including <br>s were made contenteditable by mistake).
  • Updated v2.17.6,
    • Fixed the editable_enterToAccept option to do what it was meant to do, accept when the user presses enter.
    • Added editable_autoAccept option, so that when it is true the original behavior of accepting content changes will be maintained.
    • Added editable_validate option, to allow validating the edited content.
    • Focus is now maintained within the contenteditable element after updating. This makes it easier to tab through the table while editing. This change also fixes this Stackoverflow issue.
    • The editComplete event now passes the table config variable to make it easier to access tablesorter variables.
  • Updated v2.13.2, because of the limitation in IE, if a table cell contains any DIV or SPAN immediately inside the cell, it will be targeted instead of the table cell itself and made content editable. So, if you don't care about IE support, there is no need to include the extra markup.
  • In some browsers, additional CSS is needed to highlight a focused editable table cell. See the CSS block below.
  • Pressing Escape while editing will cancel any changes.
  • In the demo below, click in any of the first three columns to edit the content, except for the cell containing "Peter".
  • To prevent a table cell from becoming editable, add the class name "no-edit" to the cell. Set by the editable_noEdit option.

When Content Changes are Accepted

editable_enterToAccept
truefalse
editable_autoAccept true
  • Pressing alt-enter
  • Pressing enter
  • Clicking outside of the current editable content.
  • Moving the mouse outside of the current tbody (this is done because if the content editable is still active when the user clicks on the header to sort the column, all sorts of bad things happen).
  • Pressing alt-enter
  • Clicking outside of the current editable content.
  • Moving the mouse outside of the current tbody.
false
  • Pressing alt-enter
  • Pressing enter
  • Pressing alt-enter
* Note The content is only accepted when the editable_validation function does not return false.

Options

Editable widget default options (added inside of tablesorter widgetOptions)

TIP! Click on the link in the function column to reveal full details (or toggle|show|hide all) or double click to update the browser location.
OptionDescription
Accepts any changes made to the table cell automatically v2.17.6

If the user clicks outside or tabs out of the edited cell, or moves the mouse out of the current tbody, any changes to the cell will be accepted

The only time the content is not accepted is if the user presses the escape key.

if false, the acceptance behavior follows the editable_enterToAccept setting.

Default value: true
Contains an array (or range string) of columns numbers you want to have editable content (zero-based index) (v2.23.0).
  • In v2.23.0, this option will now accept both range & comma separated values, e.g. '1,3-5,7'.
  • In tablesorter core v2.14.2, this widget was updated to allow passing a range string in this option, i.e. '0-2' instead of [0,1,2].
  • contenteditable="true" is added to cells within these columns.
Default value: [] (empty array)
Makes the user press enter to accept the content within the editable table cell

if false, clicking outside the cell will accept the content.

As of v2.22.2, pressing Shift+Enter will add a carriage return and not automatically accept the changes.

Default value: true
If true, the column will resort (only if already sorted) after the content has been changed.

Default value: false
Class name on table cells to search for that are not to become editable.

The search is only done within the columns set by the editable_columns option.

Default value: 'no-edit'
Event fired after the table content has been edited

$(function() {

  $('#table')
    .tablesorter({
      widgets : ['editable'],
      widgetOptions : {
        editable_editComplete : 'giterdone'
      }
    })
    // use delegated event binding
    .on('giterdone', 'td', function(event, config) {
      // this = td; the event bubble up
      console.log( 'new content = ' + $(this).text() );
    });

});
Default value: 'editComplete'
Callback function that is executeed when the contenteditable cell is focused (v2.17.8)

Set this function to manipulate or adjust the content when the content editable is focused
$(function() {

  $('#table').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      editable_focused : function(txt, columnIndex, $element) {
        // note $element is the div inside of the table cell, so use $element.closest('td') to get the cell
        $element.closest('td').addClass('focused');
      },
      editable_blur : function(txt, columnIndex, $element) {
        $element.closest('td').removeClass('focused');
      }
    }
  });

});
Default value: null
Callback function that is executeed when the contenteditable cell is no longer focused (v2.17.8)

Set this function to manipulate or adjust the content when the content editable is blurred
$(function() {

  $('#table').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      editable_focused : function(txt, columnIndex, $element) {
        // note $element is the div inside of the table cell, so use $element.closest('td') to get the cell
        $element.closest('td').addClass('focused');
      },
      editable_blur : function(txt, columnIndex, $element) {
        $element.closest('td').removeClass('focused');
      }
    }
  });

});
Default value: null
Set to automatically select all content when the contenteditable cell is focused (v2.17.8)

Set this option to a boolean, or a function that returns a boolean:
  • When true, all of the text within the current contenteditable element will be selected.
  • When false, no selection is made.
  • When this option contains a function, return either true to select all of the text within the element, or false to not select any text.
$(function() {

  $('#table').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      editable_selectAll : function(txt, columnIndex, $element) {
        // note $element is the div inside of the table cell, so use $element.closest('td') to get the cell
        // only select everthing within the element when the content starts with the letter "B"
        return /^b/i.test(txt) && columnIndex === 0;
      }
    }
  });

});
Default value: null
Validate the content change (v2.17.8)

Use this function to validate and/or modify the content before it is accepted.

In v2.17.8:
  • Set this option to be a global function, or an object containing a column index, or class name of the desired column
  • A columnIndex is now included in the function parameters
  • A $element parameter has been included which contains the contenteditable element. To get the table cell, use $element.closest('td');
This function must return either a string containing the modified content or false to revert the content back to it's original value. Example:
$(function() {

  $('#table1').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      // global validate function
      editable_validate : function(txt, orig, columnIndex, $element) {
        // only allow one word
        var t = /\s/.test(txt) ? txt.split(/\s/)[0] : txt;
        return t || false;
      }
    }
  });

  $('#table2').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      // validate function per column
      editable_validate : {
        0 : function(txt, orig, columnIndex, $element) {
          // allow up to two words
          var t = txt.split(' ');
          return t.length > 2 ? t[0] + (t[1] ? ' ' + t[1] : '') : txt;
        },
        '.price' : function(txt, orig, columnIndex, $element) {
          // make sure the price column(s) are using a number
          return isNaN( txt.replace(/[$,\s]/g, '') ) ? false : txt;
        }
      }
    }
  });

});
Default value: null
Trim the content within the editable cell (v2.17.8)

When a table cell is formatted as follows:
<td>
	John
</td>
Carriage returns and tab(s) at the beginning & end of the contenteditable table cells will be removed initially and after editing.

If this option is true, this widget will trim content upon initialization; this is necessary if you need cleaned it up content before editing, like with an autocomplete script.

Use this option as follows:
$(function() {

  $('#table').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      editable_trimContent : true
    }
  });

});
Default value: true
Wrap the editable cell content with this element (v2.17.8)

Internally, the widget uses jQuery's wrapInner to wrap the cell contents, using the following rules:
  • If this option is set to false or an empty string (''), then no wrapping will occur. The "contenteditable" attribute will be applied to the table cell.
  • If the table cell has no children, then the content is wrapped using this option, and the wrapping element will have the "contentediable" attribute enabled.
  • If the cell already has children (one or more) immediately inside of the table cell, no wrapping occurs and the child element(s) that don't have the class name set in editable_noEdit, will have the "contenteditable" attribute enabled.
Note: that this option uses jQuery's wrapInner, so this option can be set to a html string or selector, jQuery object, DOM element, or a function (jQuery 1.4+)
$(function() {

  $('#table').tablesorter({
    widgets : ['editable'],
    widgetOptions : {
      editable_wrap : '<div>'
    }
  });

});
Default value: '<div>'

Demo

editable_autoAccept    : true
editable_enterToAccept : true
First Name Last Name Age Total Discount Date
Peter Parker 28 $9.99 20% Jul 6, 2006 8:14 AM
John Hood 33 $19.99 25% Dec 10, 2002 5:14 AM
Clark Kent 18 $15.89 44% Jan 12, 2003 11:14 AM
Bruce Almighty 45 $153.19 44% Jan 18, 2001 9:12 AM
Bruce Evans 22 $13.19 11% Jan 18, 2007 9:12 AM

Javascript


	

CSS


	

HTML