vote up 2 vote down star

I'm trying to hide the "Title" field in a list. This doesn't seem to work:

SPList myList;
...
SPField titleField = myList.Fields.GetField("Title");
//titleField.PushChangesToLists = true; <-- doesn't seem to make a difference
titleField.ShowInEditForm = false;
titleField.ShowInDisplayForm = false;
titleField.ShowInNewForm = false;
titleField.Update();
//myList.Update(); <-- make no difference

What am I doing wrong?

flag

4 Answers

vote up 6 vote down check

Try this:

field.Hidden = true;
field.Update();
link|flag
that's embarrassing. This is exactly what I need. I still don't understand what the ShowInEditForm property is for but at least I can move on... Thanks (in my defense, I haven't slept all week - newborn in the house). – vitule Nov 14 '08 at 15:37
vote up 0 vote down

Are you using this in an event handler? I know the question has been answered. I would like to use this but I dont know where to put it.. ItemUpdating

link|flag
vote up 0 vote down

I believe visibility of fields in lists are controlled by the default view that the user "gets". Don't you want to modify the view? I know you can get the Views for a list, as well as the default view.

I'm just spit-balling here...

link|flag
my main concern is to remove the "Title" field from the New form and Edit form. – vitule Nov 14 '08 at 15:31
vote up 0 vote down

Make sure you are grabbing a new SPWeb instance.

using (SPSite site = new SPSite(webUrl))
{
    using (SPWeb web = site.OpenWeb())
    {
        try
        {
            //... Get SPList ...
        }
    }
}
link|flag
That's not it. Thanks though! – vitule Nov 14 '08 at 15:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.