转载 -- http://kaneboy.blog.51cto.com/1308893/499161
SharePoint 2010支持同一个网站呈现出不同语言的UI。比如,一个中文版的SharePoint 2010系统,管理员可以在服务器上安装SharePoint 2010英文语言包,然后在网站设置的“语言设置”中,选择“英语”为备用语言。
[更多...]
We had a requirement to add a read only column to one of our document library. Using Create column it isn’t possible to add a read only column. One option could be to create the new column and then using SharePoint designer we can make use of JavaScript and modify the NewForm.aspx and EditForm.aspx to display that field as read only.
We thought of adding it as a Site Column making use of ReadOnly property of field.
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Field ID="{0B8A5574-80BF-4d5e-99B9-9A25D8E8D21E}"
Name="_IsApproved"
DisplayName="Is Document Approved?"
Group="Custom Columns"
Type="Text"
Required="FALSE"
ReadOnly="TRUE">
</Field>
</Elements>
[更多...]
提出问题:
我在wss3.0有一个自定义列表,里面要根据一个存在的列[出生日期],来计算[年龄],本来想用公式 =DATEDIF([出生日期],Today,"Y")来计算,但是保存时发现,today或者Me这种函数无法用在计算列。
不知道有什么方法可以计算当前的年龄呢?
|
这个问题一直困扰了很多朋友吧,但解决办法非常搞笑,好像是骗了一下SharePoint就行了。
具体步骤:
[更多...]