Hi,

I am trying to use the dropdown field available in Adminarea for non-Adminarea.

I want to be able to write letters into an input box and filter by my input. Show up the dropdownlist filtered by the letters I put into the box before.

I have tried 2 ways but none is working.
1) html.EditorFor
2)html.NopDropDownListFor

I have used same Lists and Helpermethods but it simply won't show up-
The properties are filled! I have been using them on a different solution that I wanted to replace with standard helper... I I can finally get it to work XD

What do I need to add to my code to get this running in my Plugin on the public area?
I also tried adding various stylesheets (don't know really if I need those)


mySite.cshtml
 
    var kendoVersion = "2014.1.318";
    Html.AddCssFileParts("~/Plugins/MyPlugin/Content/styles.css");
    Html.AppendCssFileParts(string.Format("~/Administration/Content/kendo/{0}/kendo.rtl.min.css", kendoVersion));
    Html.AppendCssFileParts(string.Format("~/Administration/Content/kendo/{0}/kendo.default.min.css", kendoVersion));
    Html.AppendCssFileParts(string.Format("~/Administration/Content/kendo/{0}/kendo.common.min.css", kendoVersion));
    Html.AppendCssFileParts("~/Administration/Content/jquery-ui-themes/smoothness/jquery-ui-1.10.3.custom.min.css");

{... some code....}

@Html.EditorFor(model => model.SelectedStationStartId, Model.StationStart )


MyModel.cs

    public IList<SelectListItem> StationStart;

        [UIHint("MultiSelect")]
        public IList<int> SelectedStationStartId;


Any hint appreciated !