Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Hi Suresh,
Couldn't you just create a block with a string property and the IList<ContentReference> (or ContentArea depending on needs)? It would represent a grouping of questions under a specific name.
If you called it QuestionsBlock, your property above could be updated:
[Display(
Name = "General questions",
GroupName = SystemTabNames.Content,
Order = 130)]
[CultureSpecific]
[AllowedTypes(typeof(QuestionsBlock))]
public virtual IList<ContentReference> GeneralQuestions { get; set; }
Hi Jake,
Thanks for the update. I got idea to configure this case.
Thanks,
Suresh B
Hi,
I have a requirement of grouping the content in IList propery in CMS. Below is my property example.
[Display(
Name = "General questions",
GroupName = SystemTabNames.Content,
Order = 130)]
[CultureSpecific]
public virtual IList<ContentReference> GeneralQuestions { get; set; }
So here, Editor can drag and drop all the content references but i need to have one more option of grouping content references with name.
It's kind of Visitor group format. But i dont want to use this as it's only text group format.