Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi All.
If i have a custom FieldType, how do i hide the property from entries, like Forms recaptcha do?
public CustomFieldTypeProperty() { this.DataType = Umbraco.Forms.Core.FieldDataType.String; this.Description = "CustomFieldTypeProperty Descriptuion"; this.Icon = "icon-eye color-orange"; this.Id = new Guid("DE56846C-A5B0-41AB-93AE-H6CA980BC8C3"); this.Name = "CustomFieldTypeProperty"; this.SortOrder = 10; this.HideField = true; // This does not help }
Bump
I found out that Umbraco.Forms.Core.FieldType got a virtual property called StoresData.
public override bool StoresData { get { return false; } }
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco Forms FieldType hide in Entries
Hi All.
If i have a custom FieldType, how do i hide the property from entries, like Forms recaptcha do?
Bump
I found out that Umbraco.Forms.Core.FieldType got a virtual property called StoresData.
is working on a reply...