开发者

MVC2 Multi Select drop down list

开发者 https://www.devze.com 2023-01-31 01:05 出处:网络
I have 2 multi-select Html.DropDownList controls with a button between them. When the user selects items from the first and presses the button they are copied to the second Html.DropDownList control v

I have 2 multi-select Html.DropDownList controls with a button between them. When the user selects items from the first and presses the button they are copied to the second Html.DropDownList control via JQuery.

My problem is when the form is posted back I do not know how to obtain all the values in the second Html.DropDownList control.

This would be really easy with web forms but I have no idea how to do it with MVC2

thanks

--- Also I will need to validate the second Html.Dr开发者_运维知识库opDownList to ensure it contains at least one item.


Okay, I can get it to work by selecting all the items in the list with JavaScript right before the post back. This feels like such a hack to me though. Surely there is a better way to do it then this. Does anyone know of a way that does not rely on JavaScript?

If relying on JavaScript is the standard way to do this sort of thing then can someone explain why this is okay... Or is this an example of the immaturity of the MVC model?

Thanks.

0

精彩评论

暂无评论...
验证码 换一张
取 消