Skip to content

Instantly share code, notes, and snippets.

@tmsimont
Created July 14, 2015 23:01
Show Gist options
  • Save tmsimont/3a8dffd617d5f681cec4 to your computer and use it in GitHub Desktop.
Save tmsimont/3a8dffd617d5f681cec4 to your computer and use it in GitHub Desktop.
Sitefinity Feather dump available variables in razor template
foreach (var item in Model.Items)
{
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(item.DataItem);
<ul>
foreach (PropertyDescriptor property in properties)
{
<li>@property.Name</li>
}
</ul>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment