zoukankan      html  css  js  c++  java
  • Create a “% Complete” Progress Bar with JS Link in SharePoint 2013

    Create a “% Complete” Progress Bar with JS Link in SharePoint 2013

    SharePoint 2013 has a lot new features and functionalities that it can do out-of-the-box. One of these new functionalities is the JS Link web part property. With this property you are able to control the rendering of the web part. This will mostly be used in combination with List View Web Part.

    I see this new functionality to replace the Data View Web Part from SharePoint 2010. No more server side XSLT rendering (XSL Link), but client side JavaScript (JS Link).

    The possibilities are endless, so I'm going to show you a simple and useful example what you can do with this.

    The example I'm going to explain in this post is how you could render the Completed Percentage field of a task as a progress bar.

    Creating a progress bar

    The first thing you need to do is creating a new Task list with a view where the "% Complete" field is shown.

    Task List View

    Task List View

    When you created this list, create a new JavaScript file and call is something like: Task_Complete_Rendering.js

    Paste the following code to your JavaScript file.

    Important: I'm using <#=ctx.CurrentItem.PercentComplete#> to render the % Completed value inside my script.

    Save the file and upload it to the Master Page Gallery (Site Settings > Master pages and page layouts), fill in the required metadata field.

    Upload the JavaScript file

    Upload the JavaScript file

    Now that the file is uploaded to your SharePoint environment, go back to your Task List View you created. Once you are on the page, put the page in edit mode and edit the web part.

    In the web part properties under Miscellaneous you can find the new JS Link property. Fill in the URL to the file like this: ~site/_catalogs/masterpage/Task_Complete_Rendering.js

    You can also use the "~sitecollection" URL token, this one should be used when working with sub-sites.

    Reference the JavaScript file in the JS Link property

    Reference the JavaScript file in the JS Link property

    Store the web part changes and save the page, now you are done. Just refresh the page and you should see the following result.

    Task Progress Bar Result

    Task Progress Bar Result

     

  • 相关阅读:
    小记面向对象
    公司分层思想的演化历程
    我对uml类图关系的理解
    cms真实问题的来源以及模拟解决方案
    HTTP 协议基础
    Requests库
    接口测试概念
    Python中的strip()函数的用法
    Robot Framework环境搭建
    Python unittest excel数据驱动
  • 原文地址:https://www.cnblogs.com/jindahao/p/3554254.html
Copyright © 2011-2022 走看看