@Input() datatype: string;
@Input() multiSortable: boolean;
- // Used in conjunction with cellTemplate.
+ // Used in conjunction with cellTemplate
@Input() cellContext: any;
@Input() cellTemplate: TemplateRef<any>;
// Size of create/edito dialog. Uses large by default.
@Input() dialogSize: 'sm' | 'lg' = 'lg';
- // If an org unit field is specified, an org unit filter
+ // If an org unit field is specified, an org unit filter
// is added to the top of the page.
@Input() orgField: string;
if (this.contextOrg) {
// TODO: does the org path need to be configurable?
const search = {};
- search[this.orgField] =
+ search[this.orgField] =
this.org.fullPath(this.contextOrg, true);
return this.pcrud.search(this.idlClass, search, searchOps);
}
ngOnInit() {
- // Fires on all in-staff-app router navigation, but not initial
+ // Fires on all in-staff-app router navigation, but not initial
// page load.
this.router.events.subscribe(routeEvent => {
if (routeEvent instanceof NavigationEnd) {