London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Render ContentArea having Blocks inside Blocks

Vote:
0

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:
0
@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.