Versions Compared

Key

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

...

Configuring the UI converter of field 'fldAge' format property:
Image Added

Code that tests the actualdataprovider/UI value:

Code Block
/** @type {JSRecord<db:/example_data/employees>}*/
var rec = foundset.getSelectedRecord();
if(rec.age == null) {
	application.output('ActualDataprovider datavalue: null')
	application.output('UI datavalue:' + elements.fldAge)
}

The image below shows how data is displayed in the UI:

...