public ActionResult Index(JQueryUiComboboxViewModel vm) { var selectedVal = vm.SelectedValue; vm.Options = _options; return(View(vm)); }
public ActionResult Index() { var vm = new JQueryUiComboboxViewModel(); vm.Options = _options; return(View(vm)); }