I'm trying to render a dialog with a form of formulate inside my controller.
I created a simple partial view:
@using formulate.app.Types
@{
// Get a view model for the picked form.
var pickedForm = Model.Content.GetPropertyValue<ConfiguredFormInfo>("formPicker");
var vm = formulate.api.Rendering.GetFormViewModel(pickedForm.FormId, pickedForm.LayoutId,
pickedForm.TemplateId,
// Include this parameter in Formulate 0.3.7 or greater.
Model.Content);
}
<md-dialog>
<form ng-cloak>
<md-toolbar></md-toolbar>
<md-dialog-content><p>@Html.Partial("~/Views/Partials/Formulate/RenderForm.cshtml", vm)</p></md-dialog-content>
</form>
</md-dialog>
Then in my page I added a simple function that shows the dialog with this template:
When I click on this button the screen goes dark like there is a shadow (this is how angular - material shows a dialog), there are no error but nothing is being rendered and I don't see the dialog at all.
render partial view in umbraco with angularjs
I'm trying to render a dialog with a form of formulate inside my controller.
I created a simple partial view:
Then in my page I added a simple function that shows the dialog with this template:
finally, in my page html, I a call this function with ng-click:
When I click on this button the screen goes dark like there is a shadow (this is how angular - material shows a dialog), there are no error but nothing is being rendered and I don't see the dialog at all.
is working on a reply...