IMPORTANT: This version of Sitefinity CMS is out of support and the respective product documentation is no longer maintained and can be outdated. Use the version selector to view a supported product version.
We will illustrate this with adding a property called HeaderText, of type string.
[Category(
"General"
)]
public
string
HeaderText
{
get
;
set
}
As you can see, we can also specify the category each property appears in. The above property will produce a designer looking similar to the following:
Now we can implement the View to take the value of this property and display it. In order to access the value of this property in the view, we will add it to the ViewData dictionary. This is done in our Action method in the controller.
ViewData[
"HeaderText"
] =
this
.HeaderText;
Then we can use it in our View to display it as a header.
<
h1
>
@ViewData["HeaderText"]
</
Once we have completed all this steps, the output of the MVC widget should be rendered correctly.
The “List of features” header is taken from the value we have entered in the widget designer.
Back To Top
To submit feedback, please update your cookie settings and allow the usage of Functional cookies.
Your feedback about this content is important