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

I can like it: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • muti
  • Digg
  • del.icio.us
  • DZone
  • Fark
  • Fleck
  • Furl
  • Technorati

Leave a Reply