Tagged Questions

5
votes
3answers
527 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 ...
2
votes
1answer
223 views

SharePoint list webpart connections option not visible

I want to connect two list webparts. The problem is that when I go to "Edit Web Part -> Connections" this option "Connections" doesn't apperar. Searching on google found this: ...
1
vote
1answer
90 views

Creating custom WebPartZone inside a webpart

i have one Webpart which shows an image slider. The image slider will be added by getting image url from webpart toolpart . and i will bind image slider in webpart using this.controls.add() method. ...
1
vote
0answers
418 views

Sharepoint Filter Web Part Connection To Library Web Part

I have two web parts. The provider web part is a custom web part and the consumer a library web part. In the provider web part I filter multiple values. These multiple values shall I transfer to the ...
1
vote
1answer
290 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 = ...
0
votes
2answers
416 views

Confirmation dialog for Cancel button in sharepoint webpart

hi i am creating a webpart. i have a custom toolpart for my webpart. there i'll type some text. when i click save it will print in sharepointpage. when an user click cancel in webpart's toolpart i ...
0
votes
1answer
50 views

Multiple WebpartProviders to one single WebpartConsumer

According to the user Rhys in this post Sharepoint multiple connections to a web parts you need to configure your providers to point to a specific consumer method. How do i do said configuration to ...