Hot answers tagged sharepoint-foundation
4
That is about the same as asking "how long is a piece of string?". SharePoint is not a product that "does" anything in particular. There are a few things that come with SharePoint out of the box, without any consideration of what your company actually needs, but in most instances that will not be how YOU and your company may want to use SharePoint.
...
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 ...
2
You can insert the following JavaScript into the page can be in a Content Editor Web Part or what you want:
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
jQuery.noConflict();
jQuery(document).ready(function($){
var daynum = new Date().getDay();
var dayArray = ["Sunday", "Monday", "Tuesday", ...
1
First take a look at: http://www.aiim.org/What-is-Microsoft-Sharepoint This will help get you on the right path.
Then if you want to know more you can take a look at Wikipedia: http://en.wikipedia.org/wiki/Microsoft_SharePoint
Microsoft SharePoint is a Web application platform developed by
Microsoft. First launched in 2001,[3] SharePoint has ...
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.
Only top voted, non community-wiki answers of a minimum length are eligible