Skip to content Skip to sidebar Skip to footer

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

Problem Solved

Post a Comment for "Modal Form Clearing When A Field Is Selected"