In my code, I am utilizing an angular-multiselect component to upload a list of items and populate the [data] variable of the angular-multiselect. This component displays the list of data with checkboxes, allowing me to select all, search, and perform various actions. However, it struggles with performance when handling large amounts of data. Despite attempting workarounds, I couldn't find a solution. Eventually, I decided to switch to ng-select, which handles large amounts of data smoothly with no visible lag. Although ng-select lacks some features, I was able to add checkboxes using ng-template. One feature I'm trying to implement is disabling item selection in ng-select. I want to prevent data from being selected and displayed when clicking on a list item in the expanded dropdown. By default, ng-select selects and displays the data, which I want to change. How can I achieve this?
Angular Version: 5.2.0 ng-select version: 1.6.3