I have JSP page that contains table. when I click on one row of table initiate JQuery dialog with data from that row inside dialog. I can change data and when I click on button application save data into DB.
I want to refresh that row with new data when I write data to DB. Now I need to press F5 to do it.
Is there any javascript function to do it automatically when I update DB.
I think you will need to write you own code to do that. You could add a function to the dialog’s
closeevent and pass all new values and a row ID to it. This function then updates the given row via JS (using JQuery).