The `crmDialog` is a helper for working with the `dialogService`. In particular, it allows you to define then dialog widgets as part of the markup. To open a dialog: ```js dialogService.open('someDialog', '~/Path/To/Some.html', model, options) .then(function(result){ console.log('received output from dialog', result); }); ``` ```html
```