Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I am tring to hide a foreign key column within an insert template. The column is populated with jquery, but it would be nice if it was invisible. How is that done? Thank you.

share|improve this question
@Richard70: jQuery questions that aren't specific to SharePoint should be asked elsewhere. Thanks! – Alex Angas Sep 1 '10 at 7:10
Hi Alex. Are fk fields not used in SP? Please let me know because I might need to make some changes. I am storing the ID of the parent record in the item for filtering purposes. Should this relationship be stored in a relationships table instead? Thank you. – Anonymous Sep 1 '10 at 23:48

closed as off topic by Alex Angas Sep 1 '10 at 7:10

Questions on SharePoint Stack Exchange are expected to relate to SharePoint within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 1 down vote accepted

If you've managed to populate it with jQuery then have you tried simply setting the visibility of the object to "hidden"?

share|improve this answer
Thank you James. This worked: $("input[title='TaskOrderID']").hide(); – Anonymous Aug 31 '10 at 22:43