Questions tagged [webpartpage]
23 questions
0
votes
1 answer
Why does my Sharepoint WebPart deploy (nominally), but is still not available for adding to a page/form?
I've created and "deployed" my latest Web Part (Visual Studio grins from ear-to-ear, and tells me, "Deploy succeeded").
But when I go to our Sharepoint site, and my "sandbox" page, and Edit it, I do not see the WebPart. As the Elements file shows,…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
Why is OnPreRender being called over and over again?
In my Sharepoint 2010 WebPart, I have this code:
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
if (this.dpsvisWebPart != null && this.dpsvisWebPart.CustomTitleProp != null)
{
lbl_Title.Text =…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
Can CSS rules be dynamically added to Sharepoint 2010 Web Part Controls?
It's possible to add HTML elements dynamically in a WebPart's CreateChildControls() method, like so:
protected override void CreateChildControls()
{
base.CreateChildControls();
. . .
HtmlGenericControl _breakingSpace = new…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
How can I see to it that my WebPart is found and registered as safe?
In debugging my WebPart to see why its controls are not displaying, I put the page in edit mode in the browser to first remove all the superfluous instances of the WebPart so that I would step through the CreateChildControls() etc. methods only…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
Why are the controls on my WebPart not displaying?
I have created a Sharepoint WebPart and successfully deployed it and added it to a page.
It should sport a Label, a TextBox, and a button, but it does not. It is "naked", as you can see here:
Why would it be that the controls are not displaying?…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
How to: Add custom Web Part Page in SharePoint 2007?
I would like to have a custom web part page in SharePoint 2007. I have an application that uses javascript to popup a new window with a web part page. Currently this web part page inherits the look and feel of the site (the default.master). I would…

Pål Eilertsen
- 13
- 4
0
votes
1 answer
Sharepoint Custom List code-behind not invoked on a embedded page
I have written a custom list in sharepoint, with the onPreRender method populating the list via a webservice. The list needs to stay updated everytime it is rendered. When the list is viewed via the Lists-> MyList , the allitems.aspx is called and…

user276853
- 21
- 3
0
votes
0 answers
SharePoint 2013 - Where is the WebPartPage's StatusBar?
In a WikiEditPage after editing something, the page shows the apropriate controls to remind that the page current version is not yet visible to other people and can be published.
So far so good.
My problem is that I'm unable to make a WebPartPage…

Alberto
- 301
- 2
- 9