jsgrid
jsgrid copied to clipboard
How to save row data on text input blur(focusout)?
I want to save data on text input blur(focusout), so I don't have to click on the "save tick". I tried different way but can't even get a blur event
$("#jsGrid input[type=text]") .on("focusout", () => { console.log('FOCUS',); }) .blur(()=>{ console.log('2222222222222',2222222222222); })