0
votes
1answer
35 views
Access denied runtime error when connecting a SharePoint custom filter web part to a list view web part
I make a custom filter web part using the example from MSDN (http://msdn.microsoft.com/en-us/library/bb457205.aspx). The custom web part is a provider and has selection buttons. Each button has …
0
votes
1answer
37 views
What if you want webpart communication before Page_Load?
Hi, I am needing to create some dynamic controls at Page_Load in the consumer webpart. In the Provider webpart I did some hacking and got it so I could get a controls value before viewstate is loaded …
4
votes
3answers
346 views
Sharepoint WebParts
Say you have several webparts, one as a controller and several which take information from the controller and act on it. This is fairly easy to model using the Consumer/Producer interface introduced …
0
votes
1answer
144 views
At which point in the lifecycle does GetConnectionInterface get called?
I have this method on a webpart:
private IFilterData _filterData = null;
[ConnectionConsumer("Filter Data Consumer")]
public void GetConnectionInterface(IFilterData filterData)
{
_filterData = …
