multiselect.model.d.ts 859 B

1234567891011121314151617181920212223242526272829
  1. export interface IDropdownSettings {
  2. singleSelection?: boolean;
  3. idField?: string;
  4. textField?: string;
  5. tooltipField?: string;
  6. disabledField?: string;
  7. enableCheckAll?: boolean;
  8. selectAllText?: string;
  9. unSelectAllText?: string;
  10. allowSearchFilter?: boolean;
  11. clearSearchFilter?: boolean;
  12. maxHeight?: number;
  13. itemsShowLimit?: number;
  14. limitSelection?: number;
  15. searchPlaceholderText?: string;
  16. noDataAvailablePlaceholderText?: string;
  17. noFilteredDataAvailablePlaceholderText?: string;
  18. closeDropDownOnSelection?: boolean;
  19. showSelectedItemsAtTop?: boolean;
  20. defaultOpen?: boolean;
  21. allowRemoteDataSearch?: boolean;
  22. }
  23. export declare class ListItem {
  24. id: String | number;
  25. text: String | number;
  26. tooltip?: String | undefined;
  27. isDisabled?: boolean;
  28. constructor(source: any);
  29. }