DOTVVM: How to implement DraggableList(not working)

171 Views Asked by At

I'm currently working on a dotvvmp draggablelist. I have an objects list, Tracks, which is a list of TrackResult objects. I want to be able to drag the tracks within the list and change their positions visually speaking. There must be something wrong in the way I implement it because I always have an error. I already searched everywhere how to do it but there are not a lot of examples.
Here is the TrackResult Class:

public class TrackResult
{
    [DataMember(Name = "uid")]
    public string Id { get; set; }

    [DataMember(Name = "name")]
    public string Name { get; set; }
}

Here is my Playlist.dotcontrol view

<div class="ui fluid list" style="margin:10px;height: 100%;overflow: scroll">
    <cc:DraggableList DataSource="{value: Tracks}"
                  AllowedOperations="Reorder"
                  class="task-list">
       {{value: Name}}
    </cc:DraggableList>
</div>

and here is my PlaylistVM.cs ViewModel:

public class PlaylistVM : DotvvmViewModelBase
{
    public List<TrackResult> Tracks { get; set; }

    public PlaylistVM()
    {
        XmlConfigurator.Configure();
        log.Info("Init PlaylistVM");
        Tracks = new List<TrackResult>();
    }
}

And here is my error:

knockout:75 Uncaught ReferenceError: Unable to process binding "with: function(){return PlaylistVM }"

Message: Unable to process binding "dotvvm_withControlProperties: function(){return {} }"

Message: Unable to process binding "dotvvm-businesspack-DraggableList: function(){return {'maxItemsCount':0,'groupName':''} }"

Message: Unable to process binding "text: function(){return Name }"

Message: Name is not defined
at text (eval at parseBindingsString (knockout:70), <anonymous>:3:57)
at update (knockout:102)
at function.a.N.l (knockout:75)
at Function.dd (knockout:53)
at Function.ed (knockout:53)
at Function.ea (knockout:52)
at Object.a.u.a.N (knockout:50)
at knockout:75
at Object.D (knockout:12)
at k (knockout:74)

Furthermore this error causes many problems on my view. Here is my view when I implement the draggableList:

with DraggableList

And here is the normal one (but without the DraggableList):

withoutDraggableList

What am I doing wrong? This the first time ever I post a question on stackoverflow so I hope I didn't forget anything. But if you are interested in helping me and something's missing, please let me know.

0

There are 0 best solutions below