Abradolf Lincler
06/14/2024, 7:55 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, 11:02 AM