Skip to content

Field / Static

field ContactDate {  
  label = "Focus Date";  
  visible = [Objstate = "Open" or Objstate = "New" or Objstate = "Queued"];  
  editable = [Objstate != "Queued"];  
  required = [CustomerCategory = "E" or CustomerCategory = null];  
}  

Supported Properties

  • editable
  • falselabel
  • fieldhint
  • format
  • label
  • maxlength
  • multiline
  • required
  • size
  • truelabel
  • validate
  • visible
  • lengthmeasure

Length Measure

  • unit specifies which attribute contains the unit of the measurement. Supported units are cm, m, ft and in.
  • enabled specifies the condition to appear LiDAR button in the field.
  • mediaattribute is an optional field which accepts a binary attribute used to store LiDAR image binary data temporarily.

``` field LengthMeasurement { lengthmeasure { unit = MeasureUnit; enabled = [MeasureUnit = "cm" or MeasureUnit = "m" or MeasureUnit = "in" or MeasureUnit = "ft"]; mediaattribute = MediaAttribute; } }

```