I am struggling to get a list created by Ember.js sortable using jQuery.ui.

The controller looks like this:

App.ThingyController = Ember.ArrayController.create
  content: [
    { name: 'Item1' },
    { name: 'Item2' }
  ]

and the template like this:

<script type="text/x-handlebars">
  {{#collection contentBinding="App.ThingyController" tagName="ul" id="sortable"}}
    {{content.name}}
  {{/collection}}
</script>

My questions are:

  • Where do I best call the sortable() function on the ul "#sortable"? Is there an event on the controller and a handle to the rendered HTML element that I can use?

  • How to I connect the jQuery.ui callbacks to the Ember.js controller? Like, say, to send the updated list to the server via ajax?

All of this can be done circumventing the Ember.js abstraction, but I want to do it the "right way".

Or is the whole concept flawed and Ember.js provides for a "sortable" function without jQuery.ui?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

you could probably implement Em.View#didInsertElement [1] where you can be sure that the dom element is created and inserted into the body. this would be where you call $.sortable:

App.MySortableView = Em.CollectionView.extend({
  tagName: "ul",
  didInsertElement: function() {
    this.$().sortable()
  }
})

the template:

{{#collection "App.MySortableView" ...}}
  ...
{{/collection}}

(i didn't try this code but i dont see why it shouldn't work...)

[1] https://github.com/emberjs/ember.js/blob/master/packages/ember-views/lib/views/view.js#L738

link|improve this answer
Thanks, this was what I was looking for. The result so far: jsfiddle.net/GtWKY – Aljoscha Jan 31 at 15:20
If this works for you, be sure to accept his answer. – MattK Feb 7 at 21:13
feedback

I've seen past examples - you change the sort order of the content in the ember list. You can use the same sorting functions that ember enumerables provides.

link|improve this answer
I see, but how does this allow for a drag-and-drop sortable functionality as provided by jquery.ui's sortable()? – Aljoscha Jan 25 at 16:50
Sorry - didn't know that you also wanted drag and drop. This is just a guess, but I'd let ember handle the display and sorting, but when drag and drop happens I'd use jquery to reorder the content in the drop event. Then let ember do the display. – MattK Jan 26 at 15:04
Right, this is exactly what I am trying. I just do not know, how. – Aljoscha Jan 26 at 17:58
feedback

Your Answer

 
or
required, but never shown

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