As the user change a field, I need another field to be updated.
It works well using a listener in the edition form:
$( 'input', editor.field( 'ds_pluv' ).node() ).on( 'change', function (e, d) {
if ( ! d || ! d.editor ) { // Used to be sure change is fired from the form (not inline editing)
editor.field( 'ds_cor_pluv' ).val(true);
}
} );
But when inline editing, this appears not to be working.
Is there any other way to be able to trigger a specific action after inline editing a cell ?
Xavier