As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Jose Gomez
I'm trying to append items to an array. Let me explain. I would like to have the following property in one of the objects of my databsae:
{ history: [ { user : me, action : post, date : today } , {user : you, action : read, date: tomorrow } , { user : he, action : delete } ] }
So, I'm not able (using the JS plugin for HTML5) to add another history element to the array, lets suppose I want to add the following:
{ user : john, action : update, date : someday}
to the list in "history"
I'm trying with the "update" clause but it seems to replace the value in "history" instead of appending the element.
I would appreciate any help ;)