jsgrid icon indicating copy to clipboard operation
jsgrid copied to clipboard

How to save row data on text input blur(focusout)?

Open benderlidze opened this issue 5 years ago • 0 comments

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); })

benderlidze avatar Jul 13 '20 11:07 benderlidze