Tagged Questions
The input-builders tag has no wiki summary.
1
vote
2answers
880 views
0
votes
3answers
142 views
InputBuilder's PartialView(“My”) doesn't work
my viewmodel
public class CaseCreateInput
{
[PartialView("My")]
public object AreaId { get; set; }
}
My.aspx partialview
<%@ Page Title="" Language="C#" ...
0
votes
2answers
592 views
Input builder for a DropDownList with data from DB in mvc contrib
I have something like this
public class Person
{
public Country {get; set;}
}
public class PersonInput
{
public ImNotSureWhatShouldIUseHere Country {get; set;}
}
there is a input builder for ...