Create read-only column in SharePoint 2010 -


how create read-only column in sharepoint2010 use sp designer or sp portal?

i have seen nothing ui or designer make read field in list. there couple of ways through code.

you can create field in list definition in sharepoint project , set read value true. article shows how works.

you can set in code in feature activated method example.

    spfield f = new spfield(tasklist.fields, "myreadonlyfield");     f.readonlyfield = true;     f.update(); 

Comments

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -