Feather: Enable inline editing in widgets
By default, MVC widgets in Feather support the inline editing feature of Sitefinity CMS. you can also enable inline editing for custom. widgets. For more information, see Implement inline editing for custom modules.
In addition to the default functionality, Feather allows you to enable inline editing using the InlineEditingAttributes
and InlineEditingFieldAttributes
helpers. This way, Feather automatically generates the required attributes, so you can have a cleaner markup.
To enable inline editing in Feather views, perform the following:
- Add
InlineEditingAttributes
to your view.
To this methods, you must provide providerName
, type
, and Id
of the item that you want to be inline editable.
- To enable the editing of particular field, add the
InlineEditingFieldAttributes
helper to the html
element.
When InlineEditingFieldAttributes
are presented to any html element, the entire text content becomes editable.
- Provide the following parameters to
InlineEditingFieldAttributes
:
propertyName
The name of the property that you want to be editable.
fieldType
This is the type of field that you want to be editable.
For example “ShortText”
, “LongText”
, “DateTime”
, “FlatTaxon”
, “HierarchicalTaxon”
, “ImageField”
, “ChoicesCheckBoxes”
, “ChoicesRadioButtons”
, “ChoicesDropDown”
, “YesNo”
.
Use the following examples: