Forum Post: Re: SAVE DATA

Status
Not open for further replies.
C

clga29261

Guest
hi Sir? where this file or data saved? Thanks, On 3 March 2015 at 22:46, Godfrey Sorita bounce-gsorita@community.progress.com wrote: RE: SAVE DATA Reply by Godfrey Sorita Unfortunately this feature is not yet supported in Rollbase. Please file an enhancement request by submitting an idea on the ideas section of the community ( community.progress.com/.../default.aspx ). For detailed information on how to submit an Idea please visit our knowledgebase at: knowledgebase.progress.com/.../P11255 . If you want to implement this on a specific page, you can use the below script. This will save the data of specific fields after 3 seconds (depending on the value of delayMs ). You should set the variable a few minutes before the session expires. script var delayMS = 3000; $(function() { setTimeout(saveData,delayMS); }); var objName = "another_object", id = {!id}; function saveData() { alert("Saving Data..."); firstName = rbf_getFieldValue(fieldName); //get the current value of firstName rbf_setField(objName, id, "firstName", firstName, false); //set the value of firstName /* Add more rbf_setField here */ } /script Stop receiving emails on this subject. Flag this post as spam/abuse.

Continue reading...
 
Status
Not open for further replies.
Top