Passing multi select values to controller in MVC5

1.1k Views Asked by At

so im trying to pass back the selected values in an array from this Kendo UI multi select

            @(Html.Kendo().MultiSelect()
                .Placeholder("Select Profiles")
                .Name("Profiles")
                .Value(new[] { new { } })
                .HtmlAttributes(new
                {
                    id = "ID",
                    data_bind = "options: Profiles_msl, optionsText: 'profiles', optionsValue: 'ID'"
                })

            )

controller method emty

 public async Task<ActionResult> Regen(ViewModel model, string selcteditem )
        {   
            if (ModelState.IsValid)       
            {

}

            // If we got this far, something failed, redisplay form
            return View(model);
        }

and this is the form header on the cshtml page

        @using (Html.BeginForm("Regen", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
    @Html.AntiForgeryToken()

This is currently saying that the object is null, Im just wanting to pass the array of selected values to the controller

any help would be good

0

There are 0 best solutions below