Edittable : Update select dropdown
Edittable : Update select dropdown
nervusdm
Posts: 9Questions: 4Answers: 0
Hey guys,
I would like to update a dropdown inline, on change.
How can I achieve this ?
I use "onBlur", but I believe there is an other choice.
$('#hs_lit').on( 'click', 'tbody td', function (e) {
editor.inline( this,{
// onBlur: 'submit'
} );
} );
This question has an accepted answers - jump to answer
Answers
This example from this thread is doing something similar, it's adding a value to the Office dropdown using
initEdit
- that works for both inline and editing in the form. You could use the same event to modify your dropdown.Colin