Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
224 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
419 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
419 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
131 views

Same Webpart added multiple times on a Site page

I have 2 instances of same webpart deployed on same page. Webpart has a property named Network, which will take values Internal or External. Webpart1 is setup as internal. and Network on WebPart2 ...
0
votes
0answers
102 views

Web Part Connection worked for some values but not others

I have a 2 connected web parts. One is a regular list, the other a Data View Web Part (DVWP). The DVWP displays items in Multiple Form View so that each field is editable. In the connection, the ...
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 ...
0
votes
1answer
528 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
3answers
519 views

What if you want webpart communication before Page_Load?

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 in ...