Giter Club home page Giter Club logo

Comments (4)

DavidCasillasRivero avatar DavidCasillasRivero commented on May 21, 2024

When setting externalIdProp='' the event onItemDeselect is returning an object with just the id property, while the event onItemSelectreturns the whole item. Inspecting the code you can see the difference:

                if (!dontRemove && exists) {
                    $scope.selectedModel.splice(_.findIndex($scope.selectedModel, findObj), 1);
                    $scope.externalEvents.onItemDeselect(findObj);
                } else if (!exists && ($scope.settings.selectionLimit === 0 || $scope.selectedModel.length < $scope.settings.selectionLimit)) {
                    $scope.selectedModel.push(finalObj);
                    $scope.externalEvents.onItemSelect(finalObj);
                }

Here finalObj has an item with all properties (id, and labelplus any other) while findObj just has the id property. The event onItemSelectis being called with finalObjwhile onItemDeselect is called with findObj.

I have modified myself the line of code for testing and everything is going ok.

Is this a bug? Will it be fixed?

from angularjs-dropdown-multiselect.

dgwaldo avatar dgwaldo commented on May 21, 2024

Having the same issue here... This is a bit of a tough bug, because I have multiple drop-downs, and I can't figure out what my id's relate to as far as objects go...

from angularjs-dropdown-multiselect.

pkempenaers avatar pkempenaers commented on May 21, 2024

Setting externalIdProp to "" will return full items instead of only id.

from angularjs-dropdown-multiselect.

pybelecalo avatar pybelecalo commented on May 21, 2024

Hello pkempenaers,

This bug is not fixed. Like he says DavidCasillasRivero, we are mandated to change findObj to finalObj to resolve our problem.

This bug must to be fixed.

from angularjs-dropdown-multiselect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.