I'm using the ng-multiselect-dropdown in Angular to create a multi-select drop-down as a custom header. What I cannot seem to figure out is if there is a way to set which values I would pre-selected in the list. Here is now my drop-down is coded:
<ng-template *ngIf="column.dropdown" let-column="column" let-sort="sortFn"
ngx-datatable-header-template>
<ng-multiselect-dropdown [placeholder]="column.name"
class="d-inline-block" [data]="this[column.prop]"
[settings]="dropdownSettings">
</ng-multiselect-dropdown>
</ng-template>
Is there a property I can set that will pre-select certain values in the list? I haven't been able to find any documentation on how to do this. Thanks in advance.