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

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -