Form Data not updating after Update

Hi,

I have followed the Contact Form example with my own, and I have a problem in that after updating the Grid from the From, the Grid value and the mySQL database update, but when I return to the row, the value in the form is the old value.

If I restart IE/Firefox, the values are correct. It seems to be holding the old information in memory and not updating.

Do you know what may be the problem?

Is there any other info you need?

Thanks,
Aminal

It seems the info has been cached and is not being refreshed. Works perfectly in Firefox, but not in IE.

Does anyone have any ideas on forcing refresh of data in Form, or turning off caching in IE?

Thanks,

Hi,

you may add random parameter to avoid caching:

function load(id){
yourForm.load(url+"?id="+id+"&rs="+(new Date()).valueOf());
}