Tagged Questions
1
vote
2answers
31 views
How to copy one custom list to another custom list (approximately 600 items)
I have one master list from which I wish to query and create a subset of this in a new custom list. The code I have so far works, but it is extremely slow and occasionally hits the hard limit of the ...
0
votes
0answers
24 views
Update WebPart MenuItem/Verb from Client Side
Here is the scenario - I have a custom webpart where I added one custom menuitem with client side handler, now my requirement is when I click on the menuitem some text should be shown, for example ...
0
votes
0answers
13 views
SharePoint OOTB Search Web Part Needs Tweaking
I have a SharePoint search web part on my page. I was under the understanding that security trimming is automatically incorporated into the query in but all users can see certain pending documents.
...
1
vote
3answers
34 views
Whats the best way to create a list when a web part is added?
I have a web part I'm creating that displays links in a metro style fed from a compatible list. I'm pretty new to share point development and was wondering how can I make sure a compatible list is ...
0
votes
1answer
21 views
Is there a “URL-Structure” for Users and Groups I can access via Hyperlink?
I have a Custom WebPart which gets credentials from the site into a GridView-Table. The result (user and credential) is shown as strings. I want to create a Hyperlink to the users e.g. mysite, instead ...
1
vote
1answer
29 views
Changing Content Editor Programatically - Client model API?
Is it at all possible to make changes to or add a content editor to a page using only the Client Object Model API? There does not appear to be any reference to a ContentEditorWebPart dll.
0
votes
3answers
52 views
Webpart properties getting empty after IIS Reset
I created a custom visual user control webpart property for my SharePoint webpart. The property has a textbox which is getting empty after an IIS reset. Can anyone tell me how to solve this issue ...
2
votes
2answers
63 views
Tutorial for displaying a MessageBox in a WebPart [closed]
Possible Duplicate:
Couldn’t find any way of displaying a message box in Visual Webpart 2007 (User Control)
I have been working on SharePoint 2007 for more then a year but still don't have ...
0
votes
1answer
32 views
Method not found after adding code class to SharePoint Web Part
I'm creating a SharePoint Web Part that displays list items.
To display these items I am using an asp:ListView and <%#Eval() %>.
I needed to change the output of <%#Eval() %> so I added a ...
0
votes
0answers
59 views
Editorpart selected list item is not persisted
I have a small issue with editor part, i cannot persist the selected item, here is the code:
EditorPart:
protected override void CreateChildControls()
{
base.CreateChildControls();
...
0
votes
0answers
34 views
Editorpart positioning at the bottom
I created my own custom editor part for my web part.
But when I add it to the web part, it displays by default at the top, what i would like to have is to position it at the bottom.
Anyona has any ...
0
votes
1answer
42 views
Getting resources in a Visual Webpart
I want to get resources that are kept at directory in my visual webpart "User Control" for SharePoint 2007:
C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\Resources
At the ...
0
votes
1answer
113 views
Where to Place XML File to be Read by Web Part?
In another question, I finally found a way to deploy the XML file to be read via a Feature, to the _layouts folder:
Feature Elements File
Should I be deploying it there at all? I wasn't able to ...
1
vote
1answer
27 views
Convert Page to PersonalWebPartPage
I've a strange question for you. I have to fix bugs in the another's code (webpart for sharepoint 2010). So in the code there is a line with the code below:
var s = ...
0
votes
1answer
61 views
How can I return user-values as a SPUser (Hyperlink) in a visual webpart in C#?
I'm developing a visual webpart (TreeView). If I click on a node (folder), it gives me the credentials of the folder. Now, the values are all appearing in a label.
How can I return the users and ...