How to disable to ngbDropdown so that User can not change the value

Viewed 120

We are having ngb dropdown such as below

<div ngbDropdown class="d-inline-block" >
  <button class="btn btn-outline-primary" id="dropdownMenu1" ngbDropdownToggle>Toggle dropdown</button>
  <div class="dropdown-menu" aria-labelledby="dropdownMenu1">
    <button class="dropdown-item">Action - 1</button>
    <button class="dropdown-item">Another Action</button>
    <button class="dropdown-item">Something else is here</button>
  </div>

Somehow we tried attaching the [disabled]="true" but is not disabling. Any other way or how to do it ?

1 Answers

Put your code inside ng-container to disable it.

Related