I need help on below scenarios,
I have one multiselect dropdownlist which using ng-multiselect-dropdown control in Angular and my Parent and Child items binding in it using below line of code in html file,
<ng-multiselect-dropdown name="Countries"
[data]="Countries"
[(ngModel)]="selectedCountries"
[settings]="dropdownSettings">
</ng-multiselect-dropdown>
DropdownSettings code in TS file as below,
this.dropdownSettings = {
singleSelection: false,
idField: 'item_id',
textField: 'item_text',
selectAllText: 'Select All',
unSelectAllText: 'UnSelect All',
allowSearchFilter: true
};
I want to give right intendent to all child items which are display in dropdown list which uses 'ng-multiselect-dropdown' package as mentioned in above code So, How can we do that and what code I need to add or modify to shift my all child elements to the right hand side inside dropdownlsit?