Blog selector

This tutorial demonstrates how to add a Blogs selector in a widget's designer view.

For details about the content selector, see Use content item selectors.

PREREQUISITES: You created at least one Blog, so that the selector can use it. For more information, see Sitefinity: Blogs and blog posts

In your DesignerView.YourView.cshtml file, place one of the following tags anywhere in the HTML code:

Single item selection:

razor
<sf-list-selector sf-blog-selector sf-multiselect="false" sf-sortable="true"
                                 sf-provider="properties.ProviderName.PropertyValue"
                                 sf-selected-item-id="properties.SelectedItemId.PropertyValue" 
                                 sf-selected-item="properties.SelectedItem.PropertyValue"></sf-list-selector>

Multiple items selection:

razor
<sf-list-selector sf-blog-selector sf-multiselect="true" sf-sortable="true"
                                sf-provider="properties.ProviderName.PropertyValue"
                                sf-selected-ids="properties.SelectedItemIds.PropertyValue" 
                                sf-selected-items="properties.SelectedItems.PropertyValue"></sf-list-selector>

The values of the attributes are scope properties that you define in the MVC widget controller.

Attribute

Description

sf-selected-item-id

Single select only. Stores the ID of the selected item. 

sf-selected-item 

Single select only. Stores the serialized information of the selected item.

sf-selected-ids

Multi select only. Stores the IDs of the selected items. 

sf-selected-items

Multi select only. Stores the serialized information of the selected items. 

sf-provider

Configures the provider to use when retrieving the items to display.

Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
New to Sitefinity?