Card

Used to define a card-like display for a record.

card WorkOrderCard for TstOffWorkOrder {
   label = "${WoNo} ${Description}";

   badge Objstate {
      emphasis Complementary2 = [Objstate = "NEW"];
      emphasis Complementary3 = [Objstate = "ACCEPTED"];
      emphasis Complementary9 = [Objstate = "COMPLETED"];
   }

   imageviewer CardWorkOrderImageViewer {
      visible = [Objstate != "COMPLETED"];
   }
}

Supported elements & properties

Editable fields in list cards

Cards in lists support showing a single editable field on the right hand side of the card. By default all fields in cards have their editable property set to false. The client will only use the first visible and editable field. All other editable fields will be read-only and part of the card. Changes are saved when the field loses focus.

Limitations