Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

This method returns the next changed record in a grid. The record data can then be accessed through global fields, a data structure, or a return value object.

...

Code Block
languagejavascript
pjs.defineDisplay("display", "subfiled.json");
 
// Load subfile grid data here
 
display.ctl.execute();  // display control record
 
// Now process all subfile grid records changed by the user 
display.sfl.readChanged();
while (!display.endOfData()) {
  // Process changed subfile records here
  display.sfl.readChanged();
}

...


RPG Equivalent

READC