# record

### Example Usages

Assuming the current app has a control with the id adrName

```javascript
   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");
   }
```
