Is it possible to set permissions on schema fields to restrict editing of them to certain users?Readonly fields in Tridion 2013 SP1make schema fields read-only in Tridion 2011 SP1Getting schema fields for particular schema versionHow to access the parameter schema fields from C# TBBChanging the schema of a component after it has been saved - is it possible?How to access the nested embedded mutlivalue schema fields in C#Error when synchronizing a component against a schema with optional embedded fields which have mandatory embedded fieldsDefault value of a Schema field is not set in Component for multi value fieldsComponents are not getting updated fields from embedded schemaDynamic fields from SchemaHow to add XPM tags for component linked field and embedded fields in DXA 1.2
"was fiction" vs "were fictions"
How to tell someone I'd like to become friends without letting them think I'm romantically interested in them?
Distinguish the explanations of Galadriel's test in LotR
What's the point of having a RAID 1 configuration over incremental backups to a secondary drive?
The joke office
What is /bin/red
In Spider-Man: Far From Home, is this superhero name a reference to another comic book?
Is omega 3 a specific fatty acid?
What happens when adult Billy Batson says "Shazam"?
Why is the ladder of the LM always in the dark side of the LM?
What is this little owl-like bird?
Why do we need common sense in AI?
Addressing unnecessary daily meetings with manager?
Swapping "Good" and "Bad"
Given a 32 bit number, what is an efficient way to scale each byte by a certain factor?
Do I have to worry about delays in international trains? (UK, Belgium, Germany)
Why different specifications for telescopes and binoculars?
What is the minimum time required for final wash in film development?
How do you move up one folder in Finder?
PDF page & word count, recursive searching of directory tree, output to excel
Why does wrapping Aluminium foil around my food help it keep warm, aluminium be good conductor should have no effect?
pattern recognition riddle
Why did Old English lose both thorn and eth?
Are there languages where this "is" phrase is reversed?
Is it possible to set permissions on schema fields to restrict editing of them to certain users?
Readonly fields in Tridion 2013 SP1make schema fields read-only in Tridion 2011 SP1Getting schema fields for particular schema versionHow to access the parameter schema fields from C# TBBChanging the schema of a component after it has been saved - is it possible?How to access the nested embedded mutlivalue schema fields in C#Error when synchronizing a component against a schema with optional embedded fields which have mandatory embedded fieldsDefault value of a Schema field is not set in Component for multi value fieldsComponents are not getting updated fields from embedded schemaDynamic fields from SchemaHow to add XPM tags for component linked field and embedded fields in DXA 1.2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
What I would like is for certain schema fields to be greyed out or disabled for most users, and only editable on a component by administrators. Is it possible to do this?
2013-sp1 schema
add a comment |
What I would like is for certain schema fields to be greyed out or disabled for most users, and only editable on a component by administrators. Is it possible to do this?
2013-sp1 schema
add a comment |
What I would like is for certain schema fields to be greyed out or disabled for most users, and only editable on a component by administrators. Is it possible to do this?
2013-sp1 schema
What I would like is for certain schema fields to be greyed out or disabled for most users, and only editable on a component by administrators. Is it possible to do this?
2013-sp1 schema
2013-sp1 schema
asked 9 hours ago
Harald GreveHarald Greve
4922 silver badges14 bronze badges
4922 silver badges14 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
No, not out of the box.
There were several extensions floating about.
http://yabolka.com/gui-extension-readonly-and-hidden-fields-in-tridion-2011-and-up/ was an original from 2011, with a couple of TREX questions you should be able to get this working (e.g. Readonly fields in Tridion 2013 SP1)
To cut a long story short, you could write an extension that
- takes some way of identifying a field should be read-only (e.g. suffix the name with [Restricted] or something similar *[1])
- resets the read/write status (disable the field, sets a class to identify it) (e.g. a simple JS script over the page could do this) *[2]
You may also want to consider the use of User Group(s) to manage any specific Editors that should be able to write to that field (and take care of checking if they are in that Group from the JS mentioned above).
[1] I wouldn't use the XML name as you're stuck with it if you decide to change the status later.
[2] The main challenges here are (a) covering all different field types (b) supporting the hook into the HTML items - you'll be dependant on the HTML formating to navigate to the element you need
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "485"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftridion.stackexchange.com%2fquestions%2f20219%2fis-it-possible-to-set-permissions-on-schema-fields-to-restrict-editing-of-them-t%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
No, not out of the box.
There were several extensions floating about.
http://yabolka.com/gui-extension-readonly-and-hidden-fields-in-tridion-2011-and-up/ was an original from 2011, with a couple of TREX questions you should be able to get this working (e.g. Readonly fields in Tridion 2013 SP1)
To cut a long story short, you could write an extension that
- takes some way of identifying a field should be read-only (e.g. suffix the name with [Restricted] or something similar *[1])
- resets the read/write status (disable the field, sets a class to identify it) (e.g. a simple JS script over the page could do this) *[2]
You may also want to consider the use of User Group(s) to manage any specific Editors that should be able to write to that field (and take care of checking if they are in that Group from the JS mentioned above).
[1] I wouldn't use the XML name as you're stuck with it if you decide to change the status later.
[2] The main challenges here are (a) covering all different field types (b) supporting the hook into the HTML items - you'll be dependant on the HTML formating to navigate to the element you need
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
add a comment |
No, not out of the box.
There were several extensions floating about.
http://yabolka.com/gui-extension-readonly-and-hidden-fields-in-tridion-2011-and-up/ was an original from 2011, with a couple of TREX questions you should be able to get this working (e.g. Readonly fields in Tridion 2013 SP1)
To cut a long story short, you could write an extension that
- takes some way of identifying a field should be read-only (e.g. suffix the name with [Restricted] or something similar *[1])
- resets the read/write status (disable the field, sets a class to identify it) (e.g. a simple JS script over the page could do this) *[2]
You may also want to consider the use of User Group(s) to manage any specific Editors that should be able to write to that field (and take care of checking if they are in that Group from the JS mentioned above).
[1] I wouldn't use the XML name as you're stuck with it if you decide to change the status later.
[2] The main challenges here are (a) covering all different field types (b) supporting the hook into the HTML items - you'll be dependant on the HTML formating to navigate to the element you need
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
add a comment |
No, not out of the box.
There were several extensions floating about.
http://yabolka.com/gui-extension-readonly-and-hidden-fields-in-tridion-2011-and-up/ was an original from 2011, with a couple of TREX questions you should be able to get this working (e.g. Readonly fields in Tridion 2013 SP1)
To cut a long story short, you could write an extension that
- takes some way of identifying a field should be read-only (e.g. suffix the name with [Restricted] or something similar *[1])
- resets the read/write status (disable the field, sets a class to identify it) (e.g. a simple JS script over the page could do this) *[2]
You may also want to consider the use of User Group(s) to manage any specific Editors that should be able to write to that field (and take care of checking if they are in that Group from the JS mentioned above).
[1] I wouldn't use the XML name as you're stuck with it if you decide to change the status later.
[2] The main challenges here are (a) covering all different field types (b) supporting the hook into the HTML items - you'll be dependant on the HTML formating to navigate to the element you need
No, not out of the box.
There were several extensions floating about.
http://yabolka.com/gui-extension-readonly-and-hidden-fields-in-tridion-2011-and-up/ was an original from 2011, with a couple of TREX questions you should be able to get this working (e.g. Readonly fields in Tridion 2013 SP1)
To cut a long story short, you could write an extension that
- takes some way of identifying a field should be read-only (e.g. suffix the name with [Restricted] or something similar *[1])
- resets the read/write status (disable the field, sets a class to identify it) (e.g. a simple JS script over the page could do this) *[2]
You may also want to consider the use of User Group(s) to manage any specific Editors that should be able to write to that field (and take care of checking if they are in that Group from the JS mentioned above).
[1] I wouldn't use the XML name as you're stuck with it if you decide to change the status later.
[2] The main challenges here are (a) covering all different field types (b) supporting the hook into the HTML items - you'll be dependant on the HTML formating to navigate to the element you need
edited 8 hours ago
answered 9 hours ago
Dylan .. Mark SaundersDylan .. Mark Saunders
7,24813 silver badges33 bronze badges
7,24813 silver badges33 bronze badges
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
add a comment |
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
And, of course, consider XPM!
– Dylan .. Mark Saunders
8 hours ago
add a comment |
Thanks for contributing an answer to Tridion Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftridion.stackexchange.com%2fquestions%2f20219%2fis-it-possible-to-set-permissions-on-schema-fields-to-restrict-editing-of-them-t%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown