Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Render ContentArea having Blocks inside Blocks

Vote:
 

Hi,

I want to render a ContentArea property which has a AllowedType(Block1) for Example:

[CultureSpecific(true)]
[Display(Name = "Link Collection", Order = 10)]
[AllowedTypes(typeof(LBlock))]
public virtual ContentArea LinkCollection { get; set; }

LBlock contains a property as well as contentArea accepting type of itself

LBlock.cs

[CultureSpecific]
[Display(Name = "Title", Order = 10)]
public override string Title { get; set; }

[CultureSpecific(true)]
[Display(Name = "Link", Order = 20)]
public override Url Link { get; set; }

[CultureSpecific(true)]
[Display(Name = "Link Collection", Order = 30)]
[AllowedTypes(new[]{ typeof(LBlock)})]
public override ContentArea LinkCollection { get; set; }

How can I render this block on View. Please help

#226612
Aug 16, 2020 9:34
Vote:
 
@Html.PropertyFor(m => m.LinkCollection)
#226644
Aug 17, 2020 8:57
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.