mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
CustomForms throws an error when used within a Widget (#8338)
This commit is contained in:
parent
fb220a60a3
commit
b54d2fadc0
@ -25,10 +25,11 @@
|
||||
<label for="@Html.FieldIdFor(m => m.CustomFormPart.SaveContentItem)" class="forcheckbox">@T("Save the content item once the form is submitted")</label>
|
||||
<span class="hint">@T("Check if you want to save the content item associated to the form. Leave empty if you just want to trigger an action on the event.")</span>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<fieldset data-controllerid="@Html.FieldIdFor(m => m.CustomFormPart.SaveContentItem)">
|
||||
<h3>@T("For versionable contents ONLY")</h3>
|
||||
@Html.EditorFor(m => m.CustomFormPart.SavePublishContentItem)
|
||||
<label for="@Html.FieldIdFor(m => m.CustomFormPart.SavePublishContentItem)" class="forcheckbox">@T("Save and publish the content item once the form is submitted")</label>
|
||||
<span class="hint">@T("Check if you want to save the content item associated to the form. Leave empty if you just want to trigger an action on the event.")</span>
|
||||
<label for="@Html.FieldIdFor(m => m.CustomFormPart.SavePublishContentItem)" class="forcheckbox">@T("Publish the content item once it has been saved")</label>
|
||||
<span class="hint">@T("Check if you want to also publish the content. Leave empty if you just want to save the content as draft.")</span>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
@ -61,4 +62,4 @@
|
||||
@Html.TextBoxFor(m => m.CustomFormPart.RedirectUrl, new { @class = "text large tokenized" })
|
||||
<span class="hint">@T("The url the user should be redirected to once the form is successfully submitted. e.g.: ~/About")</span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
|
@ -13,16 +13,12 @@
|
||||
@Html.ValidationSummary()
|
||||
// Model is a Shape, calling Display() so that it is rendered using the most specific template for its Shape type
|
||||
@Display(editor)
|
||||
|
||||
@Html.Hidden("returnUrl", Request.RawUrl, new { id = string.Empty });
|
||||
@Html.Hidden("contentId", Request.QueryString["contentId"], new { id = string.Empty });
|
||||
|
||||
@Html.Hidden("contentId", !string.IsNullOrWhiteSpace(Request.QueryString["contentId"]) ? Request.QueryString["contentId"] : "0", new { id = string.Empty });
|
||||
<fieldset class="submit-button">
|
||||
|
||||
<button type="submit" name="submit.Save" value="submit.Save">@Model.ContentPart.SubmitButtonText</button>
|
||||
}
|
||||
@if (Model.ContentItem.CustomFormPart.SavePublishContentItem == true) {
|
||||
<button type="submit" name="submit.Publish" value="submit.Publish">@Model.ContentPart.PublishButtonText</button>
|
||||
}
|
||||
</fieldset>
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user