Reputation: 13970
I have a custom field in sharepoint 2007.
What I want to do is add a custom setting to it that appears not in individual items but is a property you set when you create a column. I'd like it such that any of that column can access that property but other columns can be made of my field with their own setting.
Most of the examples/tutorials/documentation I've found seem to be either incomplete or trying to accomplish something completely different.
What functionality should I be looking at in order to accomplish this??
Upvotes: 1
Views: 534
Reputation: 17363
SPField
, SPFieldLookup
or something similar); read this post to learn how to save the value of the custom property.FieldEditorUserControl
control.Also, check this project (source code is available).
Upvotes: 1