Can you have a jeditable select that submits on selecting the dropdown (instead of needing the extra 'submit' ok button.
views:
242answers:
1
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
2010-07-30 18:59:30