#69 new
MarceloXP

InPlaceCollectionEditor->submitOnBlur

Reported by MarceloXP | August 6th, 2008 @ 06:19 AM

It's simple :P the InPlaceCollectionEditor->submitOnBlur does not work, after the select lost focus, it's dont update.

new Ajax.InPlaceCollectionEditor

(

'div_name',

'page.php?tag=para',

{

collection: ['1', '2', '3'],

clickToEditText: 'Clique para Editar',

okText: ' Salvar ',

cancelControl: 'button',

cancelText: 'Cancelar',

savingText: 'Gravando...',

submitOnBlur: true,

cols: 50,

onFailure : function()

{

alert('Falha na gravação do campo');

}

}

);

Comments and changes to this ticket

  • mcrawford (at dayspring-tech)

    mcrawford (at dayspring-tech) October 30th, 2008 @ 11:49 PM

    The option is just not checked in Ajax.InPlaceCollectionEditor.createEditField.

    Adding these lines from Ajax.InPlaceEditor.createEditField works for me (don't know if this is the best way):

    if (this.options.submitOnBlur)
      list.onblur = this._boundSubmitHandler;
    
    

Please Login or create a free account to add a new comment.

You can update this ticket by sending an email to from your email client. (help)

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

script.aculo.us is an open-source JavaScript framework for visual effects and interface behaviours.

Source available from github
The Git repository resides at:
http://github.com/madrobby/scriptaculous

Check out the current development trunk with:
git clone git://github.com/madrobby/scriptaculous.git

As script.aculo.us 1.xx is feature-frozen, this development trunk is for bugfixes only.

New development should happen only for
script.aculo.us 2.

Creating a bug report
When creating a bug report, be sure to include as much relevant information as possible. Post a an example that shows off the problem. Preferably, alter the unit tests and show through either changed or added tests how the expected behavior is not occuring.