我在 Sharepoint 中以编程方式添加 BDC 列表 Web 部件。我也想使用代码编辑视图。就像“满足这些条件的检索器项目”并允许分页......我尝试使用以下代码......
BusinessDataListWebPart consumer = new BusinessDataListWebPart();
consumer.View.AllowPaging = true;
consumer.View.AllowUserQueries = false;
consumer.View.QueryValues = "Project1";
consumer.View.FilterValues = "PRoject1";
在 msdn 上,它显示 View.QueryValues 属性 (Microsoft.SharePoint.Portal.WebControls) 和 View.FilterValues 属性 (Microsoft.SharePoint.Portal.WebControls) 此成员保留供内部使用,不打算直接从您的代码中使用。
有人知道怎么做吗?