[progress Communities] [progress Openedge Abl] Forum Post: Re: Jsdo Find() Method

  • Thread starter Thread starter maura
  • Start date Start date
Status
Not open for further replies.
M

maura

Guest
The find fn returns a reference to the record found, else null, and the record found becomes the working record for that table, so you could do the following: jsdo.find(function(jsrecord) { return (jsrecord.data.CustNum == 2100); }); if (jsdo.record) { jsdo.record.remove(); } Detailed doc below: documentation.progress.com/.../

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