Controller:

ViewBag.brigade_id = new SelectList(brigadeList, "id", "name");
        return View();

View:

  Html.X().ComboBox()
                                .Name("Description")
                                .ID("brigade_id")
                                .ValueField("model.brigade_id")
                                .FieldLabel("Message")
                                .Height(85)
But I don't to value in List for ComboBox. I need add "name" to ComboBox()

I need analog:
   <div class="form-group">
            @Html.LabelFor(model => model.brigade_name, "Бригада", htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.DropDownList("brigade_id", null, htmlAttributes: new { @class = "form-control" })
                @Html.ValidationMessageFor(model => model.brigade_name, "", new { @class = "text-danger" })
            </div>
        </div>