I'm having a little trouble rendering the editor template for specific item in a custom form in orchard 1.5
I have a simple form for Volunteers to sing up to, using the Forms module, and a rule to email the content to a recipient all wonderfully easy.
However I now need to style the form to exact requirements.
The resulting HTLM should look something like this.
<fieldset>
<dl>
<dt><label for="title">Title</label></dt>
<dd class="small">
<select id="title">
<option>Select a title</option>
</select>
</dd>
<dt><label for="name">Name</label></dt>
<dd><input type="text" id="name" value="" placeholder="Enter your name" /></dd>
<dt><label for="organisation">Organisation</label></dt>
<dd><input type="text" id="organisation" value="" placeholder="Enter your organisation" /></dd>
<dt><label for="address">Address</label></dt>
<dd><textarea id="address"></textarea></dd>
<dt><label for="phone">Phone</label></dt>
<dd><input type="text" id="phone" value="" placeholder="Enter your phone number" /></dd>
<dt><label for="email">Email address</label></dt>
<dd><input type="text" id="email" value="" placeholder="Enter your email address" /></dd>
<dt><label for="age">Age group</label></dt>
<dd class="small">
<select id="age">
<option>Select your age group</option>
</select>
</dd>
</dl>
</fieldset>
I can take over the rendering of the entire form by creating a view called Content.Edit-VolunteerForm Then to render a text box, this is the only thing I could get to work.
in the form
@Html.Partial("_TextBoxEditor", (InputField)Model.ContentItem.VolunteerFrom.Phone)
Then the _TextBoxEditor Partial
@model Orchard.Fields.Fields.InputField
@using Orchard.Fields.Settings;
@using Orchard.Utility.Extensions;
@{
var settings = Model.PartFieldDefinition.Settings.GetModel<InputFieldSettings>();
var form = "VolunteerForm"; //TODO: get this value form the form item
var displayName = Model.DisplayName;
var prop = "Value";
var name = string.Format("{0}.{1}.{2}", form, displayName, prop);
var id = string.Format("{0}_{1}_{2}", form, displayName, prop);
}
<input
type="@settings.Type.ToString().ToLower()"
id="@id"
name="@name"
value="@Model.Value"
@if(!String.IsNullOrWhiteSpace(settings.Title)) {<text> title="@settings.Title"</text>}
@if(settings.Required) {<text> required="required"</text> }
@if(settings.AutoFocus) {<text> autofocus="autofocus"</text> }
@if(settings.AutoComplete) {<text> autocomplete="on"</text> }
@if(!string.IsNullOrWhiteSpace(settings.Placeholder)) {<text> placeholder="@settings.Placeholder"</text>}
@if(!string.IsNullOrEmpty(settings.Pattern)) {<text> pattern="@settings.Pattern"</text>}
@if(!string.IsNullOrEmpty(settings.EditorCssClass)) {<text> class="@settings.EditorCssClass"</text>} else {<text> class="textMedium"</text>}
@if(settings.MaxLength > 1) {<text> maxlength="@settings.MaxLength.ToString()"</text>} />
@Html.ValidationMessageFor(m => m.Value)
<span class="hint">@settings.Hint</span>
When I say work... it looks right, but it wont post the value to the e-mail and puts you back on an unformatted form page, not my formatted template. So dosen't work at all!
UPDATE this works, there was a typo in the naming of Volunteer form. I'm still sure there's a better way
The other think I've tried is adding a EditorTemplate in Views/EditorTemplates/Fields one called Input.Edit.cshtml
@model Orchard.Fields.Fields.InputField
@using Orchard.Utility.Extensions;
@using Orchard.Fields.Settings;
@{
var settings = Model.PartFieldDefinition.Settings.GetModel<InputFieldSettings>();
}
<dt>
<label for="@Html.FieldIdFor(m => m.Value)" @if (settings.Required){ <text>class="required"</text> }>@Model.DisplayName</label>
</dt>
<dd>
<input
type="@settings.Type.ToString().ToLower()"
id="@Html.FieldIdFor(m => m.Value)"
name="@Html.FieldNameFor(m => m.Value)"
value="@Model.Value"
@if(!String.IsNullOrWhiteSpace(settings.Title)) {<text> title="@settings.Title"</text>}
@if(settings.Required) {<text> required="required"</text> }
@if(settings.AutoFocus) {<text> autofocus="autofocus"</text> }
@if(settings.AutoComplete) {<text> autocomplete="on"</text> }
@if(!string.IsNullOrWhiteSpace(settings.Placeholder)) {<text> placeholder="@settings.Placeholder"</text>}
@if(!string.IsNullOrEmpty(settings.Pattern)) {<text> pattern="@settings.Pattern"</text>}
@if(!string.IsNullOrEmpty(settings.EditorCssClass)) {<text> class="@settings.EditorCssClass"</text>} else {<text> class="textMedium"</text>}
@if(settings.MaxLength > 1) {<text> maxlength="@settings.MaxLength.ToString()"</text>}
/>
@Html.ValidationMessageFor(m => m.Value)
<span class="hint">@settings.Hint</span>
</dd>
but I don't have enough control over the rendering of this template. I'd like to call this from within my Content.Edit-VolunteerForm so I have control over where the fieldset and dl tag appear. how can I do this ?