Our Sharepoint Consulting Blog
Subscribe to RSS NowSharepoint Services: Hiding fields in Sharepoint Display Form
// February 18th, 2010 // No Comments » // SharepointOnce again Paul Galvin’s Post on how to hide a text field definitely inspired to explore jquery and find other functions. Thanks Paul.
Hiding fields is similar again, just iterating through each form field, checking the name and hiding it. So hiding a field with the name “PAAdminStartDate”:
var K = jQuery.noConflict();
K(document).ready(function() {
[...]
Sharepoint Services: Hiding a Date Picker field in Sharepoint Form
// February 18th, 2010 // No Comments » // SharepointFollowing on from Paul Galvin’s Post on how to hide a text field, i have added an extra on how to hide a date picker, similar to the text field except that the table row’s parent needs to be hidden instead:
var K = jQuery.noConflict();
K(document).ready(function() {
K(‘tr:has(input[title=PAAdminStartDate])’).not(‘tr:has(tr)’).parents(‘tr:first’).hide();
});
Dont forget to install the jQuery Smartools feature
I can like [...]
Forms Designer for Sharepoint Services
// February 14th, 2010 // 1 Comment » // UncategorizedMany of our clients operate in the small to medium entreprise (SME) and thus either make the investment into Microsoft Office Sharepoint Server (MOSS) whilst many opt for Windows Sharepoint Services (WSS) as a pilot or proof of concept.
The differential always comes down to a couple of deal breakers:
1) The extent that search will play [...]
Install SharePoint Foundation 2010 – Sharepoint 2010
// February 3rd, 2010 // 1 Comment » // SharepointThis guide is suitable for a base installation of Windows 2008 Server 64bit with Service Pack 2 installed. I am running this machine on VMWare Version 6.5. I will be creating a basic farm without connecting to a SQL Server 2008 instance. I will use the SQLExpress version provided by the installer.
First off, if you [...]
Forms Based Authentication (FBA) on SharePoint 2010
// February 2nd, 2010 // No Comments » // UncategorizedArticle on setting up Sharepoint 2010 for Forms Based Authentication
I can like it:
These icons link to social bookmarking sites where readers can share and discover new web pages.

















