Hi ZOHO Creator Team:
I have a Stateless Form from which I popup a (new) Form ... in the on Add on Load section of this popped up Form, I have code like ...
- //fetch Client Profile record for this Client
- thisClientProfile = Client_Profile [Client_ID == input.Client_ID];
- input.Business_Name = thisClientProfile.Business_Name;
- input.Menu_File = thisClientProfile.Business_Menu;
- alert(input.Menu_File + "..." + thisClientProfile.Business_Menu);
- //fetch Client Profile record for this Client
- thisClientProfile = Client_Profile [Client_ID == input.Client_ID];
- thisClientProfile.Business_Menu = input.Menu_File;
But the record in the Client Profile Table does NOT get updated !!!
Gaev