Where can i find available views to use for a Forms Workflow Setting
HI all.
Using FORMS 4.4.7 and Umbraco 7.5.12.
I would like to know where i can find all possible views available for a attribute setting. Like there is TextField and pickers.content.
Do anyone know?
public class CustomWorkflow : WorkflowType
{
[Umbraco.Forms.Core.Attributes.Setting("Field", description = "This is a field", view = "TextField")]
public string TextField { get; set; }
}
I don't know if you ever found the answer to this, but it appears the available views (*default ones) are inside \App_Plugins\UmbracoForms\Backoffice\Common\SettingTypes\
Do you know if camel case is required for the views, like view = "TextField" or would i just be able to do like view = "textfield" or view = "pickers.content"?
Where can i find available views to use for a Forms Workflow Setting
HI all.
Using FORMS 4.4.7 and Umbraco 7.5.12.
I would like to know where i can find all possible views available for a attribute setting. Like there is TextField and pickers.content.
Do anyone know?
I don't know if you ever found the answer to this, but it appears the available views (*default ones) are inside
\App_Plugins\UmbracoForms\Backoffice\Common\SettingTypes\
Hi Carlos.
I was wondering if that was the case. Thanks for clearing that out.
I followed the guide here https://our.umbraco.com/documentation/Add-ons/umbracoforms/developer/extending/Adding-a-Type where they use TextField and Pickers.Content
Do you know if camel case is required for the views, like
view = "TextField"
or would i just be able to do likeview = "textfield"
orview = "pickers.content"
?I don't think it matters, cause it works either way. (I've just tested it)
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.