Comments on: Quick and Easy: A Better Way to Use jQuery to Hide a Text Field on a SharePoint Form http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/ No GeekSpeak on SharePoint 2007 WSS and MOSS Thu, 19 May 2011 05:42:36 -0500 http://wordpress.org/?v=2.8.6 hourly 1 By: Priyanka http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-92654 Priyanka Mon, 09 Aug 2010 19:30:26 +0000 http://www.endusersharepoint.com/?p=1763#comment-92654 Any ideas for dropdown content type? thanks Any ideas for dropdown content type?
thanks

]]>
By: Quick and Easy: Use jQuery to Hide a Text Field on a SharePoint Form | EndUserSharePoint.com http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-91762 Quick and Easy: Use jQuery to Hide a Text Field on a SharePoint Form | EndUserSharePoint.com Fri, 06 Aug 2010 21:37:00 +0000 http://www.endusersharepoint.com/?p=1763#comment-91762 [...] (already!): I did think of a better way to locate the <TR> tag I want to hide and wrote about it here.  You may still find this article interesting anyway so I’m leavnig it [...] [...] (already!): I did think of a better way to locate the <TR> tag I want to hide and wrote about it here.  You may still find this article interesting anyway so I’m leavnig it [...]

]]>
By: Priyanka http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-91724 Priyanka Fri, 06 Aug 2010 17:49:54 +0000 http://www.endusersharepoint.com/?p=1763#comment-91724 Where do you drop this piece of code to get things to work? Where do you drop this piece of code to get things to work?

]]>
By: Courtenay http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-34084 Courtenay Thu, 18 Feb 2010 03:15:35 +0000 http://www.endusersharepoint.com/?p=1763#comment-34084 To hide a datepicker field: $('tr:has(input[title=PAAdminStartDate])').not('tr:has(tr)').parents('tr:first').hide(); To hide a datepicker field:

$(’tr:has(input[title=PAAdminStartDate])’).not(’tr:has(tr)’).parents(’tr:first’).hide();

]]>
By: Courtenay http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-33952 Courtenay Wed, 17 Feb 2010 23:24:00 +0000 http://www.endusersharepoint.com/?p=1763#comment-33952 @Arkadiy: Try replace 'input' with 'select' @Arkadiy:

Try replace ‘input’ with ’select’

]]>
By: Hide Columns in SharePoint New, Edit and Disp Forms | SharePoint Fun http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-33619 Hide Columns in SharePoint New, Edit and Disp Forms | SharePoint Fun Tue, 16 Feb 2010 22:38:32 +0000 http://www.endusersharepoint.com/?p=1763#comment-33619 [...] Paul Galvin has written some great articles on this topic over at EndUserSharePoint – http://www.endusersharepoint.com/2009/06/17/quick-and-easy-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/ and http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text... [...] [...] Paul Galvin has written some great articles on this topic over at EndUserSharePoint – http://www.endusersharepoint.com/2009/06/17/quick-and-easy-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/ and http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text... [...]

]]>
By: Arkadiy http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-17975 Arkadiy Mon, 12 Oct 2009 19:56:39 +0000 http://www.endusersharepoint.com/?p=1763#comment-17975 I have tried to use all 3 methods on my NewItem page, but it only works for text field. How do I select DropDown? I noticed that SharePoint adds some text to Title, for example for my "Status" field SharePoint lists "Status: Specify your own value:" as title. Plugging that in the code didnt really work...Any ideas? I have tried to use all 3 methods on my NewItem page, but it only works for text field.
How do I select DropDown? I noticed that SharePoint adds some text to Title, for example for my “Status” field SharePoint lists “Status: Specify your own value:” as title. Plugging that in the code didnt really work…Any ideas?

]]>
By: jason http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-16534 jason Tue, 01 Sep 2009 18:52:04 +0000 http://www.endusersharepoint.com/?p=1763#comment-16534 great article. I have iPhone app that pulls contact web parts in and formats them to look good. It only shows last name since that is primary key field, so I might see several 'Jones' on my phone. Is there way in jQuery to concatenate Last/First Name at runtime and show in list so I see whole name? great article. I have iPhone app that pulls contact web parts in and formats them to look good. It only shows last name since that is primary key field, so I might see several ‘Jones’ on my phone. Is there way in jQuery to concatenate Last/First Name at runtime and show in list so I see whole name?

]]>
By: Erich O'Donnell http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-14012 Erich O'Donnell Fri, 26 Jun 2009 14:49:39 +0000 http://www.endusersharepoint.com/?p=1763#comment-14012 Where do you drop this piece of code to get things to work? Where do you drop this piece of code to get things to work?

]]>
By: Nathan Ahlstrom http://www.endusersharepoint.com/2009/06/18/quick-and-easy-a-better-way-to-use-jquery-to-hide-a-text-field-on-a-sharepoint-form/comment-page-1/#comment-13910 Nathan Ahlstrom Mon, 22 Jun 2009 21:46:59 +0000 http://www.endusersharepoint.com/?p=1763#comment-13910 I've been using basically this: $('nobr:contains("Hide Me!")').closest(tr).hide(); Enjoy, Nathan I’ve been using basically this:

$(’nobr:contains(”Hide Me!”)’).closest(tr).hide();

Enjoy,
Nathan

]]>