Create ContextApp with single model and nested collection
Hi Matt,
Is it possible to create ContextApps with non-collection models? For example I have a model like this:
public class ExperienceSettings : EntityBase
{
public Guid Id { get; set; }
public Guid UmbracoNodeId { get; set; }
public bool AllowVariantMixing { get; set; }
public int CutOffHoursBeforeEvent { get; set; }
public ICollection<Schedule> Schedules { get; init; }
}
And I'd like a ContentApp like this:
Is that possible at all? Not a problem if not but would be nice!
Not currently no. Pretty much everything in Konstrukt is based around the collections so it's more about managing groups of data than individual settings.
I guess that's going straight into managing a single model so maybe we could look in the future around having a single item mode that just goes straight into showing an editor for a single model 🤔
Unfortunately at the moment your only option would be a custom content app you build yourself.
Create ContextApp with single model and nested collection
Hi Matt,
Is it possible to create ContextApps with non-collection models? For example I have a model like this:
And I'd like a ContentApp like this:
Is that possible at all? Not a problem if not but would be nice!
Hey Phil
Not currently no. Pretty much everything in Konstrukt is based around the collections so it's more about managing groups of data than individual settings.
I guess that's going straight into managing a single model so maybe we could look in the future around having a single item mode that just goes straight into showing an editor for a single model 🤔
Unfortunately at the moment your only option would be a custom content app you build yourself.
Matt
is working on a reply...