Is this possible?

I'm trying out knockout.js and so far I think its brilliant, but I can't seem to bind to html5 drag and drop events.

Here's an example of from a template...

<script id="tabsTemplate" type="text/html">
        <div class="dropzone" for="tab"
            data-bind="event:{dragover: function(event){event.preventDefault();},
                              dragenter: function(event){event.target.addClass('dragover'); event.preventDefault();},
                              dragleave: function(event){event.target.removeClass('dragover'); event.preventDefault();}}
                              drop: function(event){console.log('blahblah!')}"></div>
        <h1 class="tab" draggable="true"
          data-bind="attr: {selected: $data.name === $item.selected()},
                     click: function(){$item.selected($data.name)},
                     event:{ dragstart: function(event){console.log('blah!!')},
                             dragend: function(event){document.getElementsByClassName('dragover')[0].removeClass('dragover')}}">
            ${name}

            <img src="icons/close-black.png" class="close button" role="button"
                data-bind="click: function(e){$item.close($data)}">
        </h1>
    </script>

What I have should work as expected... and they do when I make them normal inline ones... but then the other bindings don't work!

I am getting this error message...

Uncaught SyntaxError: Unexpected token '||' jquery-tmpl.js:10

What's going on here? Is there something I'm doing wrong?

EDIT: I have updated the code in the example to include dragstart and drop.

link|improve this question

65% accept rate
If you haven't implemented the dragstart event how are you determining whether or not it's working? If you don't setData then no dragging will occur. – robertc Aug 28 '11 at 1:27
All you have to do is put 'draggable: true' and you can drag. My dragend handler doesn't need to know about any data and it works just fine when its inline... just not when its in a binding. – cybermotron Aug 28 '11 at 1:41
The way I can tell is that the 'dragover' class that gets added on dragenter changes the css considerably. Dragend should remove the class from the last dropzone to fire the dragenter event. In the binding it doesn't... inline it does. – cybermotron Aug 28 '11 at 2:20
I've just checked - Chrome works, Firefox requires a dragstart. I assume therefore that you're using Chrome and this isn't your problem. I'll download knockout.js and have a play with it. – robertc Aug 28 '11 at 11:13
feedback

2 Answers

up vote 2 down vote accepted

OK, I have worked it out. It seems I missed in the documentation where it said that in knockout, by default it makes all events prevent default / return false. So all I had to do was make my dragstart handler return true, and now it works. Phew!!

link|improve this answer
feedback

You might have the same problem as mentioned here, although it refers to nested templates:

Warning

If you are passing templateOptions to the template binding from a nested template (so, specifying a template binding from within a template), then pay special attention to your syntax. You will encounter a problem, if your binding looks like this:

 <div data-bind="template: { name: 'items', data: newItems, templateOptions: { header: “New Items!”}}"></div> 

The jQuery Templates plugin gets confused by the }} at the end of your binding, since that is part of its syntax. Adding a space between your braces will work fine. Hopefully this prevents someone from a little unnecessary frustration.

 <div data-bind="template: { name: 'items', data: newItems, templateOptions: { header: “New Items!”} }"></div>
link|improve this answer
Wow... I hadn't thought about jquery template being confused about my inconsiderate use of }} ... well I fixed them up and now I no longer get the error... and now when I start my drag the console says "blah!", just like I asked it to... however the element doesn't actually drag now! It registers the dragstart event, but the element stays put... and your link appears to be broken. – cybermotron Aug 28 '11 at 6:34
link fixed now :) Good article, but not what I was looking for for this. – cybermotron Aug 28 '11 at 10:36
I realize that :) Haven't had the time to take a closer look at it though. – Major Byte Aug 28 '11 at 11:44
feedback

Your Answer

 
or
required, but never shown

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