Giter Site home page Giter Site logo

Comments (5)

ermouth avatar ermouth commented on July 24, 2024

Your bind functions never store received value into data.id. You should write in this way:

function(data, value) {
  if(value != null) data.id = value;
  return data.id;
}

from jquery.my.

SijanC147 avatar SijanC147 commented on July 24, 2024

Still getting the same result, values are updated, and the right value is highlighted in the selection box when I click on the selector, but the views of the selection boxes remain the same.

from jquery.my.

ermouth avatar ermouth commented on July 24, 2024

I run code below at jquerymy.com, replacing Bezier curve demo. All works pretty fine (I hardcoded RATES somehow) in env of jQuery 2.x.

http://jquerymy.com/index2.html has jQuery 3.x, and code also works pretty fine.

The only difference I see is that I have jquery migrate.

({
    data : {id: 18},
    init: function($form) {     $form.html(this.HTML); },
    ui: {
        "#uk": {
            init: function ($component) {
                $component.html(this.RATES
                .reduce((prev, next) => prev + '<option value="' + next.id + '">' + next.uk + '</option>', ''));
                $component.select2({
                    placeholder: "UK"
                });
            },
            bind: function(data, value) {
                if(value != null) data.id = value;
                return data.id;
            },
            recalc: "#eu, #usa",
            recalcDepth: 1
        },
        "#eu": {
            init: function ($component) {
                $component.html(this.RATES
                .reduce((prev, next) => prev + '<option value="' + next.id + '">' + next.eu + '</option>', ''));
                $component.select2({
                    placeholder: "EU"
                });
            },
            bind: function(data, value) {
                if(value != null) data.id = value;
                return data.id;
            },
            recalc: "#usa, #uk",
            recalcDepth: 1
        },
        "#usa": {
            init: function ($component) {
                $component.html(this.RATES
                .reduce((prev, next) => prev + '<option value="' + next.id + '">' + next.usa + '</option>', ''));
                $component.select2({
                    placeholder: "USA"
                });
            },
            bind: function(data, value) {
                if(value != null) data.id = value;
                return data.id;
            },
            recalc: "#uk, #eu",
            recalcDepth: 1
        }
    },
    HTML:[
        `<div class="row">
            <div>
                <select id="uk"></select>
            </div>
            <div>
                <select id="eu"></select>
            </div>
            <div>
                <select id="usa"></select>
            </div>
         </div>`
        ],

    RATES: [
        {id:18,eu:11,usa:12,uk:13},
        {id:70,eu:71,usa:72,uk:73},
        {id:30,eu:31,usa:32,uk:33}
    ]
})

from jquery.my.

ermouth avatar ermouth commented on July 24, 2024

Ah, please use latest Select2 of 3.x branch https://github.com/select2/select2/releases/tag/3.5.4.

Branch 4.x is still bit unstable, so I have not adapt $.my for it yet.

from jquery.my.

SijanC147 avatar SijanC147 commented on July 24, 2024

Yep, that did the trick! Unfortunately the latest version available through npm is v3.5.1, but seems to work great.

Apologies for not having posted the RATES variable before.

Cheers.

from jquery.my.

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.