Git Product home page Git Product logo

Comments (4)

dnasir avatar dnasir commented on September 14, 2024

@FredWTaylor

Is it possible for you to create a jsFiddle or something so I can see exactly what you're trying to do? I understand you're trying to update the dropdown source when something changes. Maybe you can try something like this, assuming I understand your problem correctly:

var sourceUrl = "/api/product/get";

// method that is triggered when a scan is done
function updateSourceUrl(productId) {
    sourceUrl += "/" + productId;
}

$("#myDropdowns").cascadingDropdown({
    selectBoxes: [
        {
            selector: ".step1",
            source: function(request, response) {
                $.getJSON(sourceUrl, request, function(data) {
                    // do stuff with the data
                });
            }
        }
    ]
});

Please let me know if that's what you were looking for.

from jquery-cascading-dropdown.

dnasir avatar dnasir commented on September 14, 2024

On a side note, it would be a good idea to add a .destroy() method to remove the plugin altogether.

from jquery-cascading-dropdown.

olimortimer avatar olimortimer commented on September 14, 2024

I think I can see the issue that @FredWTaylor is having, as I've run into some problems as well.

I have my cascading dropdowns in a modal, which is opened when a button is clicked. Depending what button is clicked, I need to select different values in the dropdowns. However, once cascadingDropdown is applied to a group, it doesn't seem to reinitialise the options, even when you re-apply it.

selected: $button.data('id') should use the id data attr of the button that's clicked, but once $dropdowns.cascadingDropdown(options) is fired, that's set in stone - if I re-apply $dropdowns.cascadingDropdown(options) when the button is clicked, the new data attr isn't picked up.

It's difficult to explain what I'm trying to do, and what I'm finding, and I've had trouble getting the plugin working on JSFiddle to setup an example.

Maybe adding a destroy() method would allow it to re-initialise with new options, or being able to grab the required selected option from a data attr on the dropdown would allow changes on the fly?

from jquery-cascading-dropdown.

dnasir avatar dnasir commented on September 14, 2024

I've updated the issue to better represent what needs to be done.

Thanks for contributing :-)

from jquery-cascading-dropdown.

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.