isLoadingRecord

Is true if the brixxApi is currently loading and displaying a record. Can be useful in an onChange event to tell the diffenrece beween a loaded value and a value that has ben set by the user or any other event.

Example Usages

In an onChange Event

   if(brixxApi.isLoadingRecord){
      console.log("app is loading a record");
   }else{
      console.log("app is not loading a record");
   }

Last updated