Sharepoint Services: Hiding a Date Picker field in Sharepoint Form
// February 18th, 2010 // Sharepoint
Following 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









So how do you implement this?