@experionathira/ng-multiselect-dropdown
Version:
Angular Multi-Select Dropdown
33 lines (32 loc) • 937 B
TypeScript
export interface IDropdownSettings {
singleSelection?: boolean;
idField?: string;
textField?: string;
disabledField?: string;
enableCheckAll?: boolean;
selectAllText?: string;
unSelectAllText?: string;
allowSearchFilter?: boolean;
clearSearchFilter?: boolean;
maxHeight?: number;
itemsShowLimit?: number;
limitSelection?: number;
searchPlaceholderText?: string;
noDataAvailablePlaceholderText?: string;
closeDropDownOnSelection?: boolean;
showSelectedItemsAtTop?: boolean;
defaultOpen?: boolean;
allowRemoteDataSearch?: boolean;
property?: string;
placement?: string;
displayOrder?: string;
includeDisabledCount?: boolean;
}
export declare class ListItem {
id: String | number;
text: String | number;
isDisabled?: boolean;
property?: String;
displayOrder?: number;
constructor(source: any);
}