Update weblistbox from a web dialog after changing data?

I have a webpage with a container on it. The container has a listbox on it. The listbox gets updated using a method on the container. All works fine.

I have a toolbar on the same webpage that calls a web dialog that allows them to change a row in the listbox. I am only passing the ID of the item in the listbox that is changed.

The web dialog will select the item from the table and create a rowset. The item is then displayed on the web dialog and changes then saved to the table.

After the data is saved, I am calling the method on the container (that sits on the webpage that has the listbox) to re-populate the rowset and then re-populate the listbox.

This works in one web app but in the 2nd web app where I am using the same code, it does not update the listbox. Any suggestions?

My guess is: something is different between one web app and the other, but hard to find.

There’s really nothing different between the two apps and it’s a mystery why one works and the other doesn’t. I’ve gone over it with two other developers in the office and none of can understand why one works and the other doesn’t; however, I was able to get the new app to work by adding an ADDHANDLER. It fires when the “dismissed” event fires in the web dialog.