Forum Post: RE: SAVE DATA

Status
Not open for further replies.
G

Godfrey Sorita

Guest
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

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