SharePoint 2013 Visual Workflows

A new feature of SharePoint 2010 was to visual design workflows in Visio. It was only possible to visual design the workflow, the configuration of the actions could only be done with SharePoint Designer. This is still possible in SharePoint 2013 but there is also something new. With SharePoint Designer 2013 it is possible to visual design the workflow and fully configure the actions!


Text-based Designer


Visual Designer

Changing the view

1. Create a new workflow in SharePoint Designer.
2. Change the default Text-based view to the new Visual designer view, by clicking on Views.

3. Add actions and logic to the workflow.
4. Configure the actions.

SharePoint 2013 community site

A lot of new social features have been added in SharePoint 2013. A major social feature is the new community site. In this blog I will show the new features included in the community site.

Creating a discussion

When a new discussion is created a user can raise the discussion as a question. For as long as there is no answer the discussion will be show in the Unanswered question view.

Featured discussions

Discussion can be marked as featured to indicate there importance. Featured discussion will be shown in the Featured view.

Finding discussions

The content of the community is organized by categories. Users can interact with the rich interface to find the correct category. Hovering over a category shows the number of discussions, replies and the description.  The views “Recent” and “What’s hot” help the users to find new are popular categories.

After selecting the correct category with the help of the different views users can find the correct discussions. For example the Featured view displays all the posts that are set as featured (important) and the Unanswered question view shows all the post without an answer.

Members

Members of a community site are user who interacted with the site, not the user added to the community sites members group. The member list shows all the members with their statistics.

My membership
On the members page users can see their own reputation statistics and if they wish leave the community.

Reputation

Users activity on community sites will give the user reputation points, bases on the gained points users will be awarded achieved badges.  Points are gained per community and achieved badges can be shown as a bar or as text.

Users gain points by;

  • creating new posts,
  • replying to posts,
  • getting a liked or receives a rating of 4 or 5 on a reply or post,
  • getting a reply get marked as ‘Best Reply’.

It is not possible to extend the reputation model.

Besides the achieved badges there are also gifted badges. Gifted badges cannot be earned, but are manually awarded.

Rating

There are two rating systems available, rating with stars and rating with likes. Rating is an individual setting for lists and libraries.

Add View folder link for document search results

In the default document search results it is only possible to open the documents. It is not possible to navigate to the documents location.

Solution

1. Edit the Search Core Results Web part on the Search Center results page.
2. Click on XSL Editor under Display properties.
4. In the XSLT look for the following code.

<xsl:template name="ViewInBrowser">
        <xsl:param name="browserlink" />
        <xsl:param name="currentId" />
        <xsl:if test="string-length($browserlink) &gt; 0">
            <span class="srch-urllink">
                <a href="{$browserlink}" id="{concat($currentId,'_VBlink')}">
                    <xsl:value-of select="$ViewInBrowser" />
                </a>

3. Add the following code after the code for ViewInBrowser.

<!-- Toon View Folder link bij documenten -->    
<xsl:if test="isdocument = 'True'">
  <a>
    <xsl:attribute name="href">
      <xsl:value-of select="sitename"/>
    </xsl:attribute>
    View Folder
  </a>                         
</xsl:if>

4. Save the changes and  enjoy the result.

Result