Column & View Permission For SharePoint List

Project Description:
As you already know, there is no possibility in SharePoint 2010/SharePoint 2007 to setup Columns and View permission for Lists or Document Libraries. I was told by Microsoft, that there will be a big performance issue if they create something similar to this...Hmm...:) I have worked on many projects in SharePoint 2010/SharePoint 2007 and everytime I have experienced same request from customers "We need the column and view permission". Sometimes we have created the custom forms and the problem was solved and when we needed something more complex we bought it from third party companies, however their software never works the way we (customer) want. Therefore I have tried to create something for everyone.

First I must to say, my solution is not perfect and I will be working on improvements, but from now on You don‘t need to pay third party companies for this because it‘s for free.

This Solution is only for SharePoint 2010!

Features:
Column Permission

- Hide or Read Only Columns in a List Forms (New/Edit/Display)
- Hide Columns in Views
- Hide Columns in DataSheet Views
- Hide Columns in Alert Me Emails
- Specify the permission for Users, SharePoint Groups or Active Directory Groups

View Permission
- Disable Views
- Hide Views in Context Menus
- Automatically Disable Views in Custom WebPart Zones
- Specify the permission for Users, SharePoint Groups or Active Directory Groups

Codeplex download address: http://spcolumnpermission.codeplex.com/

时间: 2024-08-12 02:56:45

Column & View Permission For SharePoint List的相关文章

解决 SharePoint 2013 “此power View 报表无效或不受此版本的Power View 支持。它....”

解决 SharePoint 2013 "此power View 报表无效或不受此版本的Power View 支持.它...." 问题抓图如下. 解决方法 1,把此文件的名字全部改成英文就可以了. 但不是最佳解决方案,最佳方法是. 解决方法2,下载补丁. https://support.microsoft.com/en-us/kb/2975498?wa=wsignin1.0 原来此方案针对韩文,其实 中文 也一样搞定. 英文解决方案 是 FIX: Cannot view Power Vi

Security4:Role 和 Permission

Grants permissions on a securable to a principal.  The general concept is to GRANT <some permission> ON <some object> TO <some user, login, or group>. 简单记作 Grant Permission on securable to principal 授予权限分为三部分:Permission,Securable 和 princ

CAML获取SharePoint文档库中除文件夹外所有文档

方法一: ? 1 2 3 4 <QueryOptions>         <ViewAttributes Scope="Recursive" />     </QueryOptions> </query> 方法二: ? 1 2 3 4 5 <View Scope="RecursiveAll">     <Query>         <Where>...</Where>

微信小程序 view 布局

刚看到这个效果的时候还真是和ReactNative的效果一致,属性也基本的一样. view这个组件就是一个视图组件使用起来非常简单. 主要属性: flex-direction: 主要两个特性”row”横向排列”column”纵向排列 justify-content 主轴的对齐方式(如果flex-direction为row则主轴就是水平方向) 可选属性 (‘flex-start’, ‘flex-end’, ‘center’, ‘space-between’, ‘space-around’) ali

Powershell配置SharePoint环境(再续)

1. 给用户在User Profile Service Application中赋权: $accountName = "contoso\testuser" $claimType ="http://schemas.microsoft.com/sharepoint/2009/08/claims/userlogonname" $claimValue = $accountName $claim = New-Object Microsoft.SharePoint.Admini

android5.0报错“com.ut.permission.DEVICE_STATE”导致应用安装不上

以前开发的应用在android4.4之前还运行的好好的.结果升级到android5.0就会报com.ut.permission.DEVICE_STATE这个权限的问题.这种问题很可能是权限的申明和获取的方式引起的,注意一下就可以避免了.</span> <uses-permission android:name="com.ut.permission.DEVICE_STATE"></uses-permission> 这个权限应该是用而不是声明 <p

小程序开发基础-view视图容器

view视图容器. // wxml<view class="section"><view class="section__title">flex-direction: row</view><view class="flex-wrp_one"><view class="flex-item bc_green">1</view><view class=&q

spring完整demo实例

我前几篇分散的说了spring mvc,这一篇我完整的说一下,仅供参考,如果大家要用, 只需要改下路径就行,可能比较长,大家耐心看哦.我会在最后把工程连接贴上. 先贴hibernate的连接配置:hibernate.properties dataSource.url=jdbc\:mysql\://127.0.0.1\:3306/dorm dataSource.password=123456 dataSource.username=root dataSource.driverClassName=c

MySQL and Sql Server:Getting metadata using sql script (SQL-92 standard)

MySQL: use sakila; -- show fields from table_name; -- show keys from table_name; SELECT `REFERENCED_TABLE_NAME` FROM `information_schema`.`KEY_COLUMN_USAGE` WHERE `TABLE_NAME` = '[table_containing_foreign_key]' AND `COLUMN_NAME` = '[foreign_key]'; SH