Field not refreshing on record change

I am running on a Mac version 10.4.5.
Servoy Developer
Version R2 2.2.5-build 337
Java version 1.4.2-54 (Mac OS X)

I have a solution where it appears the GUI is not updating, even though I have done several different types of forced updates. The basic form is a list view, and then more detail is shown in a form in dialog. When doing a search, the form in dialog is shown, after the search the dialog is closed and the found set is passed into the list view to show the found records.
So, if I do a search by recordID = 1, it loads it in the list view. I then click details and the formInDialog shows, and I then change a comment field (set to text area) to something like “zzzzz”. Then if I do a search for recordID = 2, it loads it in the list view. I then click details and the formInDialog shows, HOWEVER the comment field shows “zzzzz”, but in reality, it is null. I can do a manual SQL query outside of servoy, and it is null, but servoy show the value from the previous edit. This only happens when the comment field is null. It it has a value, it shows the correct value.

Below is the Solution Info:
manage_patients is the form in the list view
prms_entryDetails is the form shown in the dialog

This is a global method that is used on the onFind of the list view manage_patients:

forms.prms_entryDetails.controller.find()
application.showFormInDialog(forms.prms_entryDetails,100,80,550,720,'Search Patient Details',false,false,true);

This is the onSearch on the the forminDialog prms_entryDetails :

controller.search()
application.closeFormDialog(false);
forms.manage_patients.controller.loadRecords(forms.prms_entryDetails.controller.foundset)
forms.manage_patients.controller.show()

And this is the script that runs to show the form in dialog details (not search):

forms.prms_entryDetails.controller.loadRecords(prms_entry_to_prms_entry);
application.showFormInDialog(forms.prms_entryDetails,100,80,550,720,'Patient Details',false,false,true);

so when it should be null the old value is still there of a previous one?

can you make a case for this with a sample solution:

http://crm.servoy.com/servoy-webclient/ … oy_support