Skip to content
Loading
How can i make options unselectable in an ng-dropdown multiselect ?  
  •   
  •   
  •      $scope.myObjSettings = {  
  •         enableSearch: true,  
  •         scrollable: true,  
  •         scrollableHeight: '300px'
  •         disabledField: "isDisabled",  
  •         smartButtonMaxItems: 1,  
  •         selectionLimit: 1,  
  •         externalIdProp: '',  
  •         displayProp: 'ItemText' + ' ' + 'ItemValue' , <--- that doesnt work   
  •         idProp: 'ItemValue',  
  •         showCheckAll: false,  
  •         showUncheckAll: false,  
  •         closeOnSelect: true  
  •     };  
  •   
  •   
  •   
  • $scope.myObjList= [{    
  •     ItemValue: "1",    
  •     ItemText: "1"+"""Standard",
  •      isDisabled:true
  •   }, {    
  •     ItemValue: "2",    
  •     ItemText: "2"+""+"Intermediate",
  •     isDisabled:false   
  •   }];    
  •    
  •  
    0