MOSS中提供了一种筛选的WebParts,那么什么是筛选WebPart ?有什么作用?
简单描述就是:一个WebParts用来显示班级的学生列表,那么另外一个WebParts提供一个性别选择的下拉列表,当选择"男"时,学生列表的WebParts自动显示出所有男生的信息。
也就是说筛选WebParts的使用一般都是通过两个及以上的WebParts结合来使用的,SharePoint可以自动将这两个WebParts进行关联。
具体代码可以参见MOSS SDK中的 Creating Business Intelligence Applications -〉 Filter Web Parts。
为了更好地测试,我在测试时修改了RegionFilterWebPart 类中的如下方法:
代码写好之后,需要进行如下配置:
1、按正常方式将这两个WebParts配置到Sharepoint网站中去,并且加入到一个页面中
2、将这两个WebParts建立关联:
需要在编辑模式下进行如下修改:
3、修改好之后,在页面上选择不同的区域后,列表信息会相应的改变:
简单描述就是:一个WebParts用来显示班级的学生列表,那么另外一个WebParts提供一个性别选择的下拉列表,当选择"男"时,学生列表的WebParts自动显示出所有男生的信息。
也就是说筛选WebParts的使用一般都是通过两个及以上的WebParts结合来使用的,SharePoint可以自动将这两个WebParts进行关联。
具体代码可以参见MOSS SDK中的 Creating Business Intelligence Applications -〉 Filter Web Parts。
为了更好地测试,我在测试时修改了RegionFilterWebPart 类中的如下方法:
protected
override
void
CreateChildControls()
{
cblRegionList = new CheckBoxList();
cblRegionList.AutoPostBack = true;
Controls.Add(cblRegionList);
cbitemRegion = new ListItem();
cbitemRegion.Text = "Seattle";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
cbitemRegion = new ListItem();
cbitemRegion.Text = "US";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
cbitemRegion = new ListItem();
cbitemRegion.Text = "World";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
cbitemRegion = new ListItem();
cbitemRegion.Text = "All";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
base.CreateChildControls();
}
{
cblRegionList = new CheckBoxList();
cblRegionList.AutoPostBack = true;
Controls.Add(cblRegionList);
cbitemRegion = new ListItem();
cbitemRegion.Text = "Seattle";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
cbitemRegion = new ListItem();
cbitemRegion.Text = "US";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
cbitemRegion = new ListItem();
cbitemRegion.Text = "World";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
cbitemRegion = new ListItem();
cbitemRegion.Text = "All";
cblRegionList.Items.Add(cbitemRegion);
cbitemRegion = null;
base.CreateChildControls();
}
代码写好之后,需要进行如下配置:
1、按正常方式将这两个WebParts配置到Sharepoint网站中去,并且加入到一个页面中
2、将这两个WebParts建立关联:
需要在编辑模式下进行如下修改:
3、修改好之后,在页面上选择不同的区域后,列表信息会相应的改变:
当然这个例子很简单,我们用其它方式也可以实行相同的效果。但是在其它复杂一些的场景下,筛选WebParts还是有一定的使用价值的。
本文转自永春博客园博客,原文链接:http://www.cnblogs.com/firstyi/archive/2007/04/26/728289.html,如需转载请自行联系原作者