Sharepoint list webpart

<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
<script type="text/javascript">
    $(function(){
        var myDate = new Date();
        $("#pageTitle").html("Standing Meeting Board  -  "+myDate.toLocaleDateString());
        $("#pageTitle").css("font-weight","bold");
        $(".ms-listviewtable td").css("border","1px solid #D8D8D8");
        $("th.ms-vh2-nofilter:contains(‘IssueNote‘)").css("min-width","450px");
        $("th.ms-vh2-nofilter:contains(‘NextAction‘)").css("min-width","450px");
        $("th.ms-vh2").css("font-weight","bold");
        $("th.ms-vh2-nofilter").css("font-weight","bold");
        $("td.ms-cellstyle.ms-vb2:contains(‘Critical‘)").css("background-color","#FA5858");
        $("td.ms-cellstyle.ms-vb2:contains(‘High‘)").css({"background-color":"#FA8258"});
        $("td.ms-cellstyle.ms-vb2:contains(‘Medium‘)").css("background-color","#FE9A2E");
        $("td.ms-cellstyle.ms-vb2:contains(‘Low‘)").css("background-color","#FACC2E");
        $("td.ms-cellstyle.ms-vb2:contains(‘Follow-Up‘)").css("background-color","#F3F781");
    });
</script>

sharepoint list color change, column width change, add titile (bold with date)?

时间: 2024-11-25 12:34:10

Sharepoint list webpart的相关文章

SharePoint Survey WebPart 调查 Web部件

Problem Description Chinachen is a football fanatic, and his favorite football club is Juventus fc. In order to buy a ticket of Juv, he finds a part-time job in Professor Qu's lab. And now, Chinachen have received an arduous task--Data Processing. Th

SharePoint 2010 WebPart Web部件 总贴

SharePoint 2010 WebPart Web部件 总贴 之前写的SharePoint WebPart Web部件相关的博客,没有做一个索引,导致网友在查看的时候很不方便,于是这里我做一个总贴.感谢来自北京的summer的提醒. SharePoint 根据列表项目的元属性按照条件筛选列表项目 Web 部件 http://blog.csdn.net/crazygolf/article/details/37934165 SharePoint 网站导航Web部件 http://blog.csd

SharePoint 2010 WebPart Web部分 总的膏

SharePoint 2010 WebPart Web部分 总的膏 之前写SharePoint WebPart Web部分相关的博客,我们没有做一个索引.网友在查看的时候非常不方便,于是这里我做一个总贴.感谢来自北京的summer的提醒. SharePoint 依据列表项目的元属性依照条件筛选列表项目 Web 部件 http://blog.csdn.net/crazygolf/article/details/37934165 SharePoint 站点导航Web部件 http://blog.cs

SharePoint 2013 WebPart 管理工具分享[开源]

前言 之前做门户的时候,经常要导入导出WebPart,非常的频繁,然后就需要一个个导出,然后一个个导入,非常繁琐:闲暇之际,就考虑能不能自动化一下,把这个功能写成一个工具,可以方便的管理WebPart. 工具的主要功能就是为页面添加.删除WebPart,对已经修改好的页面,可以导入导出页面上所有的WebPart.不过由于时间仓促,没有导出WebPart所在的WebPartZone,不过手动拖动还是很便捷的,呵呵. 下面,就进入WebPart管理工具的演示阶段吧,对了,忘了说了,如果有需要类似功能

sharepoint代码添加WebPart

Adding a web part Following code snippet can be used to add a web part in an existing SharePoint website:  using (SPSite spSiteTest = new SPSite(“SiteURL”)   {       using (SPWeb spWebTest = spSiteTest.OpenWeb())       {           SPWebPartCollection

SharePoint 2013 图文开发系列之WebPart

原文:SharePoint 2013 图文开发系列之WebPart 这是我们介绍SharePoint开发入门的第一篇,在这一篇里,我们会介绍SharePoint开发的几个关键物理路径,一些开发技巧和最基础的WebPart开发. 开发工具 在SharePoint 2013开发中,我们使用的是Visual Studio 2012/2013均可,但是VS2012要额外安装Microsoft Office Develop Tools for Visual Studio 2012,可以使用Microsof

SharePoint 2013 Custom MasterPage

<%@Master language="C#"%> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"

Sharepoint Webpart 自定义属性

namespace Webpart.Staffing.ViewAll { [ToolboxItemAttribute(false)] public partial class ViewAll : WebPart { public ViewAll() { } private string _listName; [Personalizable(true)] [WebBrowsable(true)] [Category("Customize")] [WebDisplayName("

SharePoint 2013 App 局部开发,可替换 WebPart 开发

SharePoint 2013 新加入了APP 开发,较以往的自定义WebPart开发又多了一种开发选择.APP页面局部显示,就是在APP程序里添加WebPart:添加方法与“WebPart”类似,这里将详细介绍如何局部开发,以达到替换WebPart 的目的. 我是以SharePoint online 为测试环境,测试实例. 1 建立一个SharePoint 2013 的应用程序的解决方案 ,托管模式选择“SharePoint 托管”,项目名为:“Notice”,如下图: 2 右击项目,添加一个