How to bind to an input[type='text'] field with a property of type Subsidiary
When user register a party, one of the fields is the subsidiary that was the party
Instead of putting a DropDown, Select or Radio I put a input[type='text'] field
and when the user starts typing the name of the subsidiary, the autocomplete of jQueryUI shows the list of subsidiaries have filtered
Code
To accomplish these tasks, I have:
ViewModel
public class PartyViewModel
{
[UIHint("SubsidiarySelect")]
public Subsidiary Subsidiary { get; set; }
}
HTML
HTML generated by EditorTemplates of SubsidiarySelect
<input id="Subsidiary_Title" name="Subsidiary.Title" type="text" value="">
<input id="Subsidiary" name="Subsidiary" type="hidden" value="00000000-0000-0000-0000-000000000000">
#Subsidiary_Title > is used to display the selected subsidiary
#Subsidiary > saves the selected code Guid of subsidiary
Controller
My control is nothing special.
I would like the property Subsidiary in my PartyViewModel class would have filled.
[HttpPost]
public ActionResult Nova(PartyViewModel model)
{
if (ModelState.IsValid)
{
//.....
}
}
Questions
I thought of creating a SubsidiaryBinder: IModelBinder so that when the post was made, I would fill the Subsidiary property with the Database values (as have the ID)
- If this is the solution, then how to create a binder to run only in the class PartyViewModel
- How to automatically retrieve the values from the database for the
Subsidiaryproperty classPartyViewModelwhen making a post?
Subsidiary_Titlewithout their matching guids then you still should try to make that call to the database through the intented layers of your application. Given a choice between a binder making a call to the database or a controller post-action, I would propably be more leaning torwards making that call in the controller post-action. Then again, that depends on how you application is layerd I suppose. – François Wahl Feb 1 at 16:56