Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
displaying item name/values in edit/readonly mode
conmgmt
We have a requirement where item names should be in edit or read-only mode based on the user editing the dcr.
For eg. let's say user A edits a dcr, enters title="abc" and saves the dcr as A.dcr.
If user B edits A.dcr he should not be able to edit the title; title "abc" should appear as readonly or hidden to user B.
Is this possible using FormAPI?
Find more posts tagged with
Comments
Johnny
You can have role and user based filtering inside your dct with the allowed tag.
<textarea required="t" cols="55" rows="2" wrap="virtual" >
<allowed>
<not>
<cred role="admin" />
<cred user="joe" />
</not>
</allowed>
</textarea>
John
Sydney, Australia