Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Sound about right yes.
5. In edit mode.
a) First create a new block in assets pane (to the right) of the new block type
b) Go to the page you want it and drag it to the content area. Publish.
Double check the parameter value in index action on block controller. Must be named currentBlock and be of correct type or you will only get null for the currentBlock.
So I am trying to create my first block. The idea of this block is to get latest news from an api end point and then show it on different pages on the website.
What I have understood is this
public class NewsBlock : BlockData { [CultureSpecific] [Display( Name = "Heading", Description = "Add a heading.", GroupName = SystemTabNames.Content, Order = 1)] public virtual String Heading { get; set; } }
public class LatestNewsViewModel { public NewsBlock NewsBlock { get; private set; } public IEnumerable LatestNews { get; set; }
public LatestNewsViewModel(NewsBlock latestNewsBlock, IEnumerable latestNews)
{
NewsBlock = latestNewsBlock;
LatestNews = latestNews;
}
}
Is this the way to do it? Or am I missing something?