3
votes
2answers
580 views

ExecuteOrDelayUntilScriptLoaded not executing after page publish

In SharePoint 2013 I have a page that is using the Script Editor web part. In the script editor web part I have the following: ExecuteOrDelayUntilScriptLoaded(startIt, "sp.js"); function startIt() { ...
0
votes
1answer
60 views

SharePoint 2010 One of two web front ends have broken Audience on web parts

I have encountered a problem with Audiencing in our SharePoint 2010 farm. Hopefully someone out here has encountered this before. We have 2 web front ends (web1 and web2) 1 app server (app1) and a ...
0
votes
1answer
522 views

Button Onclick EventHandler from CreateChildControls

I have declared a button in my CreateChildControls method in my web part page: TableCell updateCell = new TableCell(); Update = new Button(); Update.Text = "Update"; ...
0
votes
1answer
694 views

How Do I Get the MySite Images and Full Name of the MySite owner in MOSS 2007 in C#

I am building a simple web part that needs the image that is used from the MySite and the First and Last name of the site owner. I know how to get the current user, I need the name. I am also having ...
1
vote
2answers
856 views

This powershell runs but why is it so slow

I ran this powershell which automates wsp addition, activate, deploy web parts and it runs fine. However, it takes about 3 minutes to go through the whole process. Is this norm? = = = powershell code ...
1
vote
2answers
469 views

Is there a web part the will display Quicktime (.mov) files?

Ideally like the media web Part displays .wmv files, but it could be some pre-existing webpart that simply writes the proper EMBED code to the page.
1
vote
1answer
794 views

Change Display Mode of SharePoint Page based on edit Control Panel

I have a custom web part which shows a different interface when in edit mode. When in edit mode the default control panel displays on the right. When the user clicks OK, Cancel or Apply the web part ...