ng-multiselect-dropdown closing on selecting second item in drop down

70 Views Asked by At

In this drpdown after selecting first item(pune), when I click on second item(New delhi) to select, Dropdown got closed, It is multiselect dropdown. Below are me settings:

dropdownSettings = {
      singleSelection: false,
      idField: "ID",
      textField: "text",
      selectAllText: 'Select All',
      enableCheckAll: true,
      unSelectAllText: 'UnSelect All',
      allowSearchFilter: true,
      itemsShowLimit: 1,
      closeDropDownOnSelection: false
    };

When click on second item(New Delhi), it should select. But dropdown itself closing.

1

There are 1 best solutions below

4
andrewbyteforge On

Hi Jyothi I think you need to change itemsShowLimit: 1 to itemsShowLimit: 3.

Hopefully this will work. Let me know :)