Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a starter of Ember and I try to use Ember.js(1.0.0.pre) in my app.

I am trying to set title for my Ember.Select's options to show tips when mouseover. But, I can't find any information about the option's title in API.

Do I have to write a function myself to populate the "title" attribute? Is there any way like "optionLabelPath" to bind "title" attribute for options?

share|improve this question

2 Answers

up vote 2 down vote accepted

To achieve this we need to reopen the Ember.SelectOption

here is the fiddle for the following example

MyApp = Ember.Application.create();

Ember.SelectOption.reopen({
  attributeBindings: ['title'],
  title: function() {
    var titlePath = this.getPath('parentView.optionTitlePath');
    return this.getPath(titlePath);
  }.property('parentView.optionTitlePath')
});

MyApp.selectArray = [{
    label: "A",
    id: "1",
    title: "for Apple"
  },
  {
    label: "B",
    id: "2",
    title: "for Ball"
  }];

Handlebars

<script type="text/x-handlebars" >
  {{view Ember.Select
     contentBinding="MyApp.selectArray"
     optionLabelPath="content.label"
     optionValuePath="content.id"
     optionClassPath="content.title"
  }}
</script>​

share|improve this answer
Great! it works. And I find the information here .link – JackYe Nov 1 '12 at 15:15
So did I..... :) – Unspecified Nov 1 '12 at 15:30

Here is the simplest I could come up with: http://jsfiddle.net/aK8JH/1/

Template:

{{view MyApp.Select contentBinding="content"}}

View:

MyApp.Select = Ember.Select.extend({
    attributeBindings: ['title'],
    title: 'myTitle'
});

Read this: http://emberjs.com/documentation/#toc_attribute-bindings-on-a-view

share|improve this answer
This will add title to the dropdown not the options – Unspecified Nov 1 '12 at 14:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.