skip to Main Content

Html – disable p-dropdown option when options are display in ng-template for looping them

i am trying to disable option in p-dropdown but i use ng-template for looping the options here is my code any suggestions ? thanks <p-dropdown [options]="task.statusOptions" optionLabel="name" optionValue="id" (onChange)="updateTaskCurrentStatus($event, task)" appendTo="body" [placeholder]="this.dropdownPlaceholder(task)" > <ng-template let-status pTemplate="status"> <div [ngStyle]="{ color: status.uiSetting.color}"…

VIEW QUESTION

How to change the text of the "OK" button of the popup that displays the dropdown_search package in Flutter

How to change the text of the "OK" button of the popup that shows the dropdown_search package in Flutter, in Multi-selection mode. See image DropdownSearch<String>.multiSelection( popupProps: PopupPropsMultiSelection.menu( showSearchBox: false, showSelectedItems: false, fit: FlexFit.loose, ), ) Package: https://pub.dev/packages/dropdown_search I have not…

VIEW QUESTION

Javascript – bootstrap 5 click inside dropdown should not open close the dropdown

I have the following code <html> <head> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"> <script src="https://code.jquery.com/jquery-3.7.1.slim.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="dropdown"> <button class="btn btn-primary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false"> Dropdown button <i class="bi bi-x inside-button"></i> </button> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="#">Action</a></li>…

VIEW QUESTION
Back To Top
Search