Git Product home page Git Product logo

ember-chosen's Introduction

ember-chosen

Easy integration for Chosen v1.1.0 with Ember v1.5+. It goes without saying that you need Chosen and Ember for this to work.

Installation

Ember-CLI integration is coming soon but, for now, grab ember-chosen.js and templates/chosen-select.hbs.

Usage

Template:

{{chosen
  content=businessesArray
  optionLabelPath='content.name'
  optionValuePath='content.id'
  prompt='Choose...'
  selection=business // Use business.content if item is gotten via a promise
}}

Controller (or view or route):

Obviously you can bind the content array however you please, but below is an example:

App.FormController = Em.ObjectController.extend({
  businessesArray: Em.A(),
  
  init: function() {
    this.setBusinessesArray();
    this._super();
  },
  
  setBusinessesArray: function() {
    var _this = this;
    
    // Set the array
    _this.get('controller.store').find('business').then(function(businesses) {
      _this.set('businessesArray', businesses);
    }
  },
})

The result is that the business property on your controller content will be the business selected using the chosen component. When you run this.get('content').save() in your controller, it will save the new information.

All Em.Select properties, methods, etc, are available to use with the Chosen View.

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.