up vote 0 down vote favorite
share [g+] share [fb]

I am trying to create a Custom Field Type in SharePoint.

This control has it's value set based on another field in the same list. Because of this requirement, this field should be displayed only in the Display Mode, and not in the Edit or Create mode.

How do I ensure this?

If I just code the ASCX control to not render a field, the field will show up like this in the Edit and Create mode.

alt text

link|improve this question

feedback

6 Answers

Generally you set the SPField.ReadOnlyField property to True to achieve the desired behaviour for any field. (Don't forget to SPField.Update accordingly!) There is an equivalent CAML attribute for list definitions, I believe.

That said, in your control class deriving from BaseFieldControl, you might just override the RenderFieldForInput() method and not call the base implementation to ensure nothing is rendered during Create or Edit. However, this would still render the field's table row in the form, which is probably not what you want. So to enforce the desired behaviour, use ReadOnlyField and override Update() in your SPField (not field control) class to always have it set to True.

link|improve this answer
Sorry... Doesn't work... Or am I doing it wrong? This is what I wrote in the SPField class: public override void Update() { this.ReadOnlyField = true; base.Update(); } – ashwnacharya May 19 '09 at 11:56
Try just setting the property in all your constructors, completely ignoring Update() calls or overrides. (Don't Update() in your constructor for sure!) – ROXORITY SharePoint Web Parts May 19 '09 at 12:09
Tried... Nope.... The Row in the Edit page still renders; what's worse, it stops updating the value of the field. The value doesnt change when I change the value of the field which it looks up to.. – ashwnacharya May 19 '09 at 12:11
1  
By the way, it might be better to set the ShowInEditForm and ShowInNewForm properties -- I recall sometimes ReadOnlyFields could not be edited from the List Settings page! – ROXORITY SharePoint Web Parts May 19 '09 at 12:13
Got it working? – ROXORITY SharePoint Web Parts May 19 '09 at 12:41
feedback

It might be easier to just change this on a list-by-list basis by going to the Advanced section of the List Settings, setting Allow management of content types? to Yes, and then editing your content type to change the value of your field to 'hidden'.

link|improve this answer
feedback

Take a look at this blog post. I think it will give you some ideas. The concept uses different rendering templates based on the mode.

http://sharepoint.nailhead.net/2008/04/creating-rendering-template-that.html

link|improve this answer
feedback

Did you try and set the field as hidden? http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfield.hidden.aspx

Custom FORMS pages for new item and edit item (NewForm.aspx and EditForm.aspx) would be another way to achieve this.

link|improve this answer
Wouldn't this also hide the field on display forms, which is not wanted? I can only re-emphasize ShowInEditForm and ShowInNewForm with regard to the OQ ;) – ROXORITY SharePoint Web Parts May 19 '09 at 23:01
feedback

Try this too, How to hide columns in SharePoint

link|improve this answer
feedback
up vote 0 down vote accepted

Setting the ShowInEditForm and ShowInNewForm properties solved this for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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