Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello I have recently began work on a largely JQuery/JQueryUI based ASP .Net website. The idea was to have only one page and to have the rest of the content be dynamic, etc loaded in through dialogs and ajax.

The problem is however when a Create & a Edit form for the same model are open in dialogs at the same time some JQueryUI widgets such as the DatePicker stop working as the forms cause the DOM to have duplicate id's on the fields which are present in both.

So I tried using this code on the controller:

ViewData.TemplateInfo.HtmlFieldPrefix = "Create"; // or Edit etc

This worked to fix the DatePicker problem, but the fields no longer mapped to the model when they were posted back to the controller.

Does anyone know how to fix this?

share|improve this question

1 Answer

up vote 11 down vote accepted

You could try specifying the same prefix when binding back:

[HttpPost]
public ActionResult Create([Bind(Prefix = "Create")] CreateViewModel model)
{
    ...
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.