所以我在Sharepoint是新加入的, 使用2010年的共享点, 我需要创造出一种先进的形式, 比如以两种或两种以上 的下调列表或 Javamart 来制作的级联下调列表。
我读到有三种方法可以做到:分享点设计师、信息资料和视觉工作室。
我发现如何在视觉工作室做它 可能是一连串复杂。
所以我想知道哪一种是这种形式的最好方法 如果你有书可以学习
所以我在Sharepoint是新加入的, 使用2010年的共享点, 我需要创造出一种先进的形式, 比如以两种或两种以上 的下调列表或 Javamart 来制作的级联下调列表。
我读到有三种方法可以做到:分享点设计师、信息资料和视觉工作室。
我发现如何在视觉工作室做它 可能是一连串复杂。
所以我想知道哪一种是这种形式的最好方法 如果你有书可以学习
就像最复杂的框架一样, SharePoint的开发, 是在你开始尝试设置代码之前, 你会想做一些研究。
Getting started video: http://msdn.microsoft.com/en-us/sharepoint/ee513147.aspx
MSDN Mag getting started article: http://msdn.microsoft.com/en-us/magazine/ee309510.aspx
Book to get you started: http://www.amazon.com/Professional-SharePoint-2010-Development-Programmer/dp/0470529423
你运气好, 因为 Infopath 2010 能够处理 串列的检查。 我之前也做过。 我将假设您有数据上的等级关系, B 的 A 父是 C 的 父, 例如 州 - & gt; 县 - & gt; 市。 我们将使用 州 - & gt; 县 - & gt; 市例 。 这些信息将存储在办公室列表中, 因为我们的办公室需要了解所有这些信息( 是的, 与我一起工作在这里) 。
所以首先,因为这个也标记了 SharePoint, 我猜你们有州、县和市名单。 县有州、 县和市名单的外观, 市有县。 每个名单都有名字栏。 没有逻辑, 我可以选择洛杉矶, 但我仍然可以选择阿拉巴马州为州, Orange 州为州。
因此, 要让全部工作。 首先, 请在办公室列表中的 SharePoint 中选择“ 在 Infopath 中强制格式 ”, 这将点燃 Infopath 设计师, 并创建默认的布局。 将此形式的布局自定义为您心脏的渴望 。
现在,要让递减递减到工作, 您需要记下一些东西。 保存在每次递减中的值是项目的标识。 显示的值是您在创建 Office 列表中的查看时选择显示的值 。
您需要为顶级( 州) 设定一条规则, 以便在修改字段时将下级( 州和市) 设定为空白值。 重复县级; 它必须设置为空。 这样可以确保, 如果您选择了一个新的州( 州), 下级会被刷新 。
下一步是过滤数据。 过滤县的下调, 以便县上的州列与表单中的州域相等。 重复给市一级, 以便县列与表单中的县下调值相等 。
您可能需要为县和市创建另一个网络服务, 因为默认的网络服务可能没有州或县列。 如果您需要, 只需选择您需要的字段, 才能削减传输的数据 。 为了保存更多的数据, 您可能还需要设置它, 因此当顶层发生改变时, 数据会在较低级别查询 ; 这是更改规则的第一步 。 顶层 (州) 仍然需要在表格上加载, 但其他人不需要自动加载 。 这样您就可以不同时加载全部数据 。 如果您有多个项目, 可能需要这样做, 因为默认的Infopath 有1.5MB数据负载限制 。
如果你需要更多的澄清,请告诉我。
Does anyone know whether it s possible to modify the workflow actions of a SharePoint Designer workflow template programmatically? For example, one has a SendEmail action and I d like to modify the ...
Is there a way, through SPD (w/o the state machine extension), to restart a workflow?
I m trying to create a dynamic row filter based on a variable. I have the following code: <xsl:variable name="filter" select="contain(@Title, title1 ) or contain(@Title, title2 )"/> <xsl:...
I am working on a program that retrieves information from Sharepoint. Now I need to check the behavior of it with some locks. My question is "How can I lock a single site within a site collection in ...
I have an aspx that returns XML data using the query string parameter UserId. This UserId should be the SharePoint current User. I create the datasource and dragged to the page, but i don t know how ...
I have a SharePoint list of Issues and have set a column (called Alert) to a “Person or Group” (allowing multiple names). I would like the system to send an email to all the users listed in the ...
Is there a way for a web part to figure out the hosting page is being loaded into SharePoint Designer ?
I m sort of new to the custom parameters that can be setup on a DataView Webpart. There are 6 options: - None - Control - Cookie - Form - QueryString - Server Variable I think that None, Cookie and ...