Abradolf Lincler
06/14/2024, 9:14 AM"propertyEditorSchemaAlias": "Umbraco.Plain.String"
is responsible for defining the value type of Property Editor input.
My question is how can I create my own more complex types like objects?
Another question, when models are generated automatically
This "propertyEditorSchemaAlias": "Umbraco.Plain.String"
is gonna create property in backend model of type string => public virtual string SuggestionTest => this.Value<string>(_publishedValueFallback, "suggestionTest");
which in my case seems accurate. But what if i was able to create the type "Umbraco.MyObjectHere"
, how backed model would know which type to generate in here
this.Value<MyObjectHere>(_publishedValueFallback, "suggestionTest");
?Mike Chambers
06/14/2024, 9:20 AMMike Chambers
06/14/2024, 9:24 AMAbradolf Lincler
06/14/2024, 12:08 PM"propertyEditorSchemaAlias": "Umbraco.Plain.String"
Let's say i want to have Umbraco.MyProduct type.Mike Chambers
06/14/2024, 12:40 PM