record

Represents the current record, if a record is loaded, otherwise it will return null.

Example Usages

Assuming the current app has a control with the id adrName

   if(brixxApi.record){
      console.log("the current record id is: " + brixxApi.record.id);
      console.log("hello: " + brixxApi.record.data.adrName); 
   }else{
      console.log("sorry, no record loaded");
   }

Last updated