Modal Form Clearing When A Field Is Selected
I'm working on an inventory management system and I have a table showing inventory purchased and used. I have included edit buttons to edit a row of information using a modal. When
Solution 1:
Just change modal event from show
to shown
will fix the issue
Issue reproduced Here
$('#editinvModal').on('shown.bs.modal', function (event) {
//Rest of the code
});
Post a Comment for "Modal Form Clearing When A Field Is Selected"