vazco / meteor-universe-autoform-select

Meteor universe autoform select
MIT License
16 stars 10 forks source link

Could I use event `on change` in template? #32

Closed thearabbit closed 8 years ago

thearabbit commented 8 years ago

I would like to use event onChange

// Template
........
    'change [name="uniSelect"]': function (event, instance) {
        var price = instance.$('[name="price"]').val();
        console.log(price);
         .........
    },

but don't work, pl help me.

thearabbit commented 8 years ago

Now it work fine.