Hi,
When we delete a record in javascript, I use the following code:
var fBP = new SCFile("optbillingpoint");
var rcFound = fBP.doSelect("id = \"" + system.vars.$id + "\"");
if (rcFound == RC_SUCCESS) {
fBP.doDelete();
}
What if I have an array of structure inside the table and I want to delete an entry inside that array. Does anyone knows the code for that?
Would appreciate any ideas on this.
Thanks.


Reply With Quote
Bookmarks