ngu-multiselect-dropdown
Version:
Angular multiselect dropdown component for web applications. Easy to integrate and use. It can be bind to any custom data source and custom filter.
27 lines (26 loc) • 771 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;
}
export declare class ListItem {
id: String | number;
text: String | number;
isDisabled?: boolean;
constructor(source: any);
}