Typo

Typo

mRendermRender Posts: 151Questions: 26Answers: 13
edited October 2014 in Web-site

submitOnBlur

This option is used to control what action is taken by Editor upon a blur event. The form can either be submitted to the server by setting this value to true, or the form can be closed by setting it to false.

A blur is triggered either by a call to blur()E or by the end user causing the form to loose focus - i.e. clicking upon the background.

Note that if blurOnBackground (above) is disabled, this setting is irrelevant as no action will be taken.

Automatically submit on blur of an inline edit

$('#myTable').on( 'click', 'tbody td', function () {
  editor.inline( this, {
    submitOnBlur: trie <<<<<<<<<<<
  } );
} );

trie != true

Replies

  • allanallan Posts: 61,649Questions: 1Answers: 10,093 Site admin

    Hi,

    Thanks for pointing that out! Fixed now :-)

    Allan

This discussion has been closed.