Hot answers tagged sharepoint-foundation
4
Do I need to do any configuration at Central Administrator?
If you want it just for your personal machine then you shouldn't touch CA.
You need to perform some additional steps, e.g. creating a group policy and modifying IE Enhanced Security Configuration.
Follow this article out,
How do I make our SharePoint site stop asking me to login? – Part I
...
3
You could use relative paths, like in most web development, like
/_layouts/images/hello.jpg
Or use SPUrl tokens inline in the src or href attribute. See more here: http://hristopavlov.wordpress.com/2008/12/08/urlaction-tokens-of-the-customaction-feature/
This link is 2007, but most tokens should still be valid!
2
This permission is managed by the Browse Directories permission level. See http://davidlozzi.com/2012/06/21/read-only-users-cannot-access-sharepoint-via-web-dav/ for an opposite scenario (allowing users to access this path).
2
If you have Site Collection Audit Logging enabled (Site Actions ->
Site Settings -> Configure audit log settings,) which hopefully you
do, you can view the Audit reports for the site. It will show the
group deletion under "Security Settings"
Since you are using SharePoint foundation you might want to check it through this way,
Another option ...
2
The requirements are of course to update your master page to support HTML 5 (obviously you'll have to use any modern browser to get the benefits of it). The limitations most important are due to the META tag and DOCTYPE (http://klines.org/sharepoint/sharepoint-2010-html5-and-ie9-compatibility-issues/)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
2
To fall inside the same-domain restrictions of JavaScript you must have the same fully-qualified domain, including schema and port. I'm assuming your 'different physical machine' has a different hostname, so it is not same-domain.
If you want to query across domains you will need to look at cross-domain ajax (e.g. CORS or similar).
For completedness, this ...
2
Options I would see an upgrade feature (http://blogs.msdn.com/b/sanjaynarang/archive/2012/02/06/feature-upgrade-adding-fields-to-content-types-and-sharepoint-application-lifecycle-management.aspx or the series of Chris O'Brien http://www.sharepointnutsandbolts.com/2010/06/feature-upgrade-part-1-fundamentals.html), which could
If your list is based on a ...
2
Here is some js that should load efter the ribbon is loaded:
SP.SOD.executeOrDelayUntilScriptLoaded(function() {
// Your code here
},
"sp.ribbon.js");
More about modifying in this blogpost
Edit:
// Fires ‘ribbontabselected’ after the ribbon has been initialized after load
ExecuteOrDelayUntilScriptLoaded(function () {
var pm = ...
2
I think the better approach would be to grant users read only access to the list. Then even if the connect the list to an Office app or download the data for offline use, they won't be able to change it.
If that isn't feasible or desirable, you should be able to create a custom permission level that you can apply to specific lists that has the use client ...
1
It sounds like maybe you're misunderstanding the "Check Out" feature. If you have versioning options turned on for the document library, checking out a document using the web interface doesn't download it, it just marks it locked for editing by the curent user. You'll still need to hit the "Edit" link to download and edit the file after you check it out.
...
1
List of valid WCF return types
Primitive types (string, int32, etc...)
Complex types with DataContract or Serializable attributes
Stream
Message
SyndicationFeedFormatter
Void
There is no return type like TreeView. maximum you can get the xml out of WCF service and bind it to TreeView control.
1
Similar question found on Technet.
Their suggestion was to add the External list like so:
Site Action > More Options > External List.
Also, a more detailed answer with screeenshots on Technet.
1
I was able to implement this by using a customized View as with PirateEric's comment, but I needed to group the conditions in a way the GUI list view filter editor wouldn't let me. The solution involved using SP Designer 2010 to edit the CAML query for the filter directly. I figured out the query using the CAML Query Helper tool on CodePlex: ...
1
I resolved my issue by using EnabledScript property in Custom Action.
I verified whether current list is my custom list and enabled the button. For the rest of the lists the ribbon button will be shown but disabled.
I referred this link.
1
In addition to Johns points, be aware that GAC code runs faster, as it does not have to make stack walk to determine missing permissions.
If you are one of several teams supplying code to the solution, it could be a security issue running in the GAC, as you would be able to execute each other classes/methods. Using CAS policies you can lock the assembly ...
1
This entirely depends on what you are trying to accomplish with your solution. If you need this code to run fully trusted, the GAC is the simpler choice. However, if you don't require full trust on the assembly and want to be more restrictive in what the assembly can do, go the bin route. MSDN has a good description of each path (for 2007 but still ...
1
I have seen a similar issue in the past that as due to an errant SharePoint Designer workflow that would double in size each time it was invoked. The workflow was up to almost 1GB before we were able to stop it. Microsoft was never able to find the issue but we had to remove all traces of the workflow before the problem fully went away. The performance ...
1
As you could maybe see from links exposed by Robert, these are quite fixed (even more than MSDN Ids http://wiki.customware.net/repository/pages/viewpage.action?pageId=69173255) as defined in the platform.
To my knowledge, you cannot add your own, but you could add your own items or hide items via Custom Actions. You could use the Control Delegate ...
1
I worked on a project embedding JWplayer and Flowplayer into SP2010 and we had some great success with it (it became a product, http://www.ramp.com/solutions/enterprise/, I am not a sales weasal or getting comission ;).
We haven't had anything break SP yet, but I don't know how custom the CSS was for our player. I handled the SP side, and another developer ...
1
In my view the new Usage analytics is more true than the old 2010 version of Web Analytics. Wikipedia says the following on Web analytics:
Web analytics is the measurement, collection, analysis and reporting of internet data for purposes of understanding and optimizing web usage.
And looking at the section on-site web analytics - definitions this was ...
1
This should be feasible using iframes in the same manner SharePoint does. Your dropdown list would need some JavaScript to handle showing and hiding the iframes, and each iframe might look something like
<iframe class="ms-dlgFrame" id="form1" src="http://site/lists/listName/NewForm.aspx?IsDlg=1" frameBorder="0" style="width: 620px; height: 650px;">
...
1
I would not see this possible as most like your VB end-result is and EXE which just per-se is not possible to upload in SharePoint libraries as it by default a restricted extension in SP-CA. So besides the fact that is totally against what collaboration is meant for, but even so, it is a desktop application by definition, and even if you somehow bypass that ...
1
There yre two ways for the solution
Update to the Latest CU or at least June CU 2012.
Go to Central Administration > Application Management > Configure quotas and locks > on the Site Quota Information section > set a limit (i.e: 5000 MB) on this setting: “Limit site storage to a maximum of:” > and then press “OK”.
After that it works for me.
1
Problem solved. Sharepoint was setup without the FQDN and although the Web application was working, the REST API was not working and was always retrieving data for the root site.
Using the Central Administrator after the URL was changed to use the FQDN all is fine now and data is retrieved correctly.
1
You need to add few permission roles, follow steps below,
The steps for configuring SharePoint Server role permissions are as
follows:
On the RMS server, navigate to C:\Inetpub\wwwroot_wmcs\Certification.
Right-click the ServerCertification.asmx file and choose Properties,
and then click the Security tab.
Click Edit and then Add. ...
1
please refer to this answer that i answered about the minimal download stratergy ;)
External access gives a blank home page
to stop it do the following:
go to:
Site settings > under Site Actions section > manage site feature
now disable the feature MDSFeature and it will keep on that link instead of redirecting ;)
1
So...they want all the features of SharePoint, but not SharePoint? Good luck with that. While you're at it, perhaps you could also build a piece of software with all of the features of Excel, but make it easier to use... Seriously, how you approach it is to figure out what is prompting this move, as it doesn't make any sense at all. There are, after all, ...
Only top voted, non community-wiki answers of a minimum length are eligible



