Dynamic Content ItemDataBound
I want to .GetValue of a dynamic content item in the itemdatabound event handler.
I've tried to cast like this:
DynamicContent testimonialItem = (DynamicContent)e.Item.DataItem;
But this doesn't get give me the .GetValue and .SetValue options?
You need to include this:
using
Telerik.Sitefinity.Model;
Thank you that did it.