views:

242

answers:

1

Can you have a jeditable select that submits on selecting the dropdown (instead of needing the extra 'submit' ok button.

A: 

I added this function:

if ('submit' == settings.onchange) {
    input.change(function() {
        form.submit();
    });
}

Right before the line:

form.submit(function(e) {

And for all the selects that I want to be updated on the change event I pass the setting onchange:'submit'

Rismo