I have Custom Content Type in Orchard, with coresponding part of same name with two text fields, defined in migrations. The part definition is as follows:
ContentDefinitionManager.AlterPartDefinition("Faq",
cfg => cfg
.Attachable()
.WithField("Question", f => f
.OfType("TextField")
.WithDisplayName("Question")
.WithSetting("Flavor","Wide"))
.WithField("Answer", f => f
.OfType("TextField")
.WithDisplayName("Answer")
.WithSetting("Flavor", "Html"))
This adds the fields to the part, but the setting is not applied - both fields have the default flavor in the dashboard. I believe it is just a silly typo but I'm unable to figure it out.
"html"
instead of"Html"
– devqon