The custom-web-part-property tag has no wiki summary.
4
votes
1answer
4k views
Custom webpart properties not holding their values!
I am dynamically adding items to a CheckBoxList that configures some settings in my web part. When I set the properties and click "OK" everything on my page works as expected and displays that data ...
4
votes
1answer
3k views
Setting default value for custom webpart property
im trying to set a DefaultValue for my custom webpart property..
namespace Beraterprofil.VisualWebPart1
{
[ToolboxItemAttribute(false)]
public class VisualWebPart1 : WebPart
{
...
3
votes
2answers
396 views
Is it possible to swap out urls pointing to MySite with urls to custom pages?
We've developed a custom userprofile page for a costumer. This page is supposed to be linked to by all default sharepoint buttons and links pointing to the MySite.
One example is the SharePoint ...
3
votes
1answer
164 views
Custom SearchPage in SearchBoxEx Control
I was pushed to replace the default search box in a site collection with a customized one. At the moment it looks like this:
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
...
3
votes
2answers
791 views
Is it possible to access the web part properties from a dialog?
In my web part I use the create_DialogOptions JS function to create a new aspx site as a dialog box. That works fine. Now I would like to have access to the custom properties from the web part.
I ...
2
votes
1answer
374 views
Easy way to add a custom web part property to a web part?
I'm creating a web part using Visual Studio 2008 for SharePoint 2007. If I'm creating the web part from scratch, I typically don't have any properties defined yet in my code.
I've found that it is ...
2
votes
2answers
678 views
Custom webpart to set and get Property per user (PersonalizationScope.User)
I am trying to create a custom webpart in point to set and get a property per user on page.
To change the background and save it per user.
I'm using code like this:
public static string ...
2
votes
2answers
568 views
sharepoint webpart property disappear after a day (C#)
I developed a custom webpart with a webpart property with some textboxes and it works partially.
If I deploy the project, the written text in the property is away. This is ok.
But my MAIN Problem ...
2
votes
1answer
342 views
PageViewer setting Height/Width
i am creating a dynamic Page Viewer web part from the user control code behind .. something like this:
PageViewerWebPart oWebPart = new PageViewerWebPart();
oWebPart.ContentLink = ...
2
votes
2answers
249 views
Webpart with custom properties - cancel does not work
I have implemented a webpart with custom properties in an editor part. If I click apply or ok, the values are successfully updated (code in OnPreRender).
The problem is now that if I click apply and ...
1
vote
2answers
823 views
Custom properties in XSL
Is it possible to pull the value of a property, from a web part into XSL?
I need to build something similar to the standard Summary Link Web Part, but would like to extend the default control with ...
1
vote
2answers
743 views
custom editor web part - disappears other property
Update:
protected override void CreateChildControls()
{
// autopostback
ddlTopic = new DropDownList
{
CssClass = ...
1
vote
2answers
847 views
How to Show the loading message
i am working on a custom web part where i have a few dropdowns in the tool pane so it take a while to load the dropdownlist and i have total three dropdownlist... i need to show the Loading message ...
1
vote
2answers
1k views
Sharepoint 2010 Custom Properties via WebPart UserControl
I have a weather UserControl (defaulting to the headquarters location) . I have removed the ability to "Edit Web Part" because of branding and not wanting to have to train users on how to work the ...
1
vote
2answers
402 views
Inserting custom webpart to an ASPX page
Scenario : The 14 hive template/layouts folder has an ASPX page that is shown to users. I want to show some more information within that page.
I am able to open that ASPX page. It has ...