Skip to content

Commit e9a9ab7

Browse files
committed
tfs 975326
1 parent b78a2b7 commit e9a9ab7

4 files changed

Lines changed: 22 additions & 6 deletions

docs/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@
4545
"fileMetadata": {},
4646
"template": [],
4747
"dest": "docs",
48-
"xref":["mref/sql130.zip"]
48+
"xref":["mref/sql130.zip","mref/System.Reflection.Assembly.Load.yml","mref/System.Web.UI.WebControls.WebParts.IWebPartRow.yml"]
4949
}
5050
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
### YamlMime:XRefMap
2+
references:
3+
- uid: System.Reflection.Assembly.Load*
4+
name: Load
5+
fullName: Assembly.Load
6+
href: https://msdn.microsoft.com/en-us/library/system.reflection.assembly.load
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
### YamlMime:XRefMap
2+
references:
3+
- uid: System.Web.UI.WebControls.WebParts.IWebPartRow
4+
name: IWebPartRow
5+
fullName: WebParts.IWebPartRow
6+
href: https://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webparts.iwebpartrow(v=vs.110).aspx
7+
- uid: System.Web.UI.WebControls.WebParts.IWebPartRow.GetRowData*
8+
name: GetRowData
9+
fullName: IWebPartRow.GetRowData
10+
href: https://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webparts.iwebpartrow_methods(v=vs.110).aspx

docs/reporting-services/report-viewer-web-part-programmability-in-sharepoint-integration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ manager: "erikre"
2222
The Report Viewer Web Part is a server control, which contains a set of public application programming interfaces (API) that enables developers to create custom SharePoint applications. You can create custom Web Parts that supply report path and parameters to Report Viewer Web Part using Web Part connections. You can also embed the Web Part in a custom SharePoint Web Part page and customize it using the public API.
2323

2424
## Connecting to Report Viewer Web Part with Custom Web Parts
25-
The Report Viewer Web Part is a connection consumer to SharePoint Web Parts that implement <xref:System.Web.UI.WebControls.IWebPartRow> or T:Microsoft.SharePoint.WebPartPages.IFilterValues. An <xref:System.Web.UI.WebControls.IWebPartRow> Web Part, such as the **Documents** Web Part can supply a report path to a Report Viewer Web Part when placed on the same Web Part page as the Report Viewer Web Part. Likewise, an T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part, such as the **Text Filter** or the **Choice Filter**, can supply a report parameter to a Report Viewer Web Part when placed on the same Web Part page as the Report Viewer Web Part.
25+
The Report Viewer Web Part is a connection consumer to SharePoint Web Parts that implement <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> or T:Microsoft.SharePoint.WebPartPages.IFilterValues. An <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> Web Part, such as the **Documents** Web Part can supply a report path to a Report Viewer Web Part when placed on the same Web Part page as the Report Viewer Web Part. Likewise, an T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part, such as the **Text Filter** or the **Choice Filter**, can supply a report parameter to a Report Viewer Web Part when placed on the same Web Part page as the Report Viewer Web Part.
2626

2727
### Implementing a Report Path Provider with IWebPartRow
2828
To supply a report path to the Report Viewer Web Part through Web Part connections, do the following:
2929

30-
1. Create a Web Part that implements the <xref:System.Web.UI.WebControls.IWebPartRow> interface.
30+
1. Create a Web Part that implements the <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> interface.
3131

3232
2. Add the Web Part to the same Web Part page as the Report Viewer Web Part.
3333

3434
3. Connect your Web Part to the Report Viewer Web Part in the Web-based Web Part design user interface.
3535

3636
> [!NOTE]
37-
> You can only connect one <xref:System.Web.UI.WebControls.IWebPartRow> Web Part to the Report Viewer Web Part at a time, and you cannot connect both an <xref:System.Web.UI.WebControls.IWebPartRow> Web Part and an T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part to the Report Viewer Web Part at the same time.
37+
> You can only connect one <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> Web Part to the Report Viewer Web Part at a time, and you cannot connect both an <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> Web Part and an T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part to the Report Viewer Web Part at the same time.
3838
39-
For your <xref:System.Web.UI.WebControls.IWebPartRow> Web Part to work properly with the T:Microsoft.ReportingServices.SharePoint.UI.WebParts.ReportViewerWebPart, you must do the following in the <xref:System.Web.UI.WebControls.IWebPartRow.GetRowData%2A> method:
39+
For your <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> Web Part to work properly with the T:Microsoft.ReportingServices.SharePoint.UI.WebParts.ReportViewerWebPart, you must do the following in the <xref:System.Web.UI.WebControls.WebParts.IWebPartRow.GetRowData%2A> method:
4040

4141
- Invoke the callback method with a <xref:System.Data.DataRowView> object as the input parameter.
4242

@@ -57,6 +57,6 @@ manager: "erikre"
5757
3. Connect your T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part to the Report Viewer Web Part in the Web-based Web Part design user interface.
5858

5959
> [!NOTE]
60-
> You can connect multiple T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Parts to the Report Viewer Web Part at a time. However, you cannot connect both an <xref:System.Web.UI.WebControls.IWebPartRow> Web Part and an T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part to the Report Viewer Web Part at the same time.
60+
> You can connect multiple T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Parts to the Report Viewer Web Part at a time. However, you cannot connect both an <xref:System.Web.UI.WebControls.WebParts.IWebPartRow> Web Part and an T:Microsoft.SharePoint.WebPartPages.IFilterValues Web Part to the Report Viewer Web Part at the same time.
6161
6262

0 commit comments

Comments
 (0)