You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I have a requirement to hide the comment field in the Edit screen. I was able to hide it using the following Behaviours script:
def commentField = getFieldById(getFieldChanged())
if (getFieldScreen().name == "My Edit Screen" && !getActionName())
{ // check if on edit screen
commentField.setHidden(true)
}
But, the problem is that it is also hiding the comment field in the View screen, which I do not want.
For example, after I open/dismiss the Edit screen and clicked on the "Comment" button in the "Comments" tab in the View screen, the "Comment" button disappeared. Also clicking on the "Comment" button under the Summary in the View screen has no affect.
If I refresh the browser, the "Comment" button appears again in the "Comments" tab, and clicking on it will display the comment field.
Anyone knows how to hide the comment field in the Edit screen without affecting the comment field in the View screen?
I was able to hide the comment field using javascript code.
In the "Field Configurations", I located a custom field in the View screen and added the following javascript code to the field descripton:
<script> $(document).ready(function(){ $("div.aui-field-wikiedit").hide(500); }); </script>
At run-time, the comment field is hidden in the Edit screen. The comment field in the View screen is not affected.
It should be like this:
def commentField = getFieldById(getFieldChanged())
if ( !getActionName())
{ // check if on edit screen
commentField.setHidden(true)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexey. It didn't work. It hid the comment field in both Edit and View screens. I don't want the comment field to be hidden in the View screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If this is still interesting:
As this solution worked for me in it's attended purpose, have you checked wether you have configured your "My Edit Screen" also as "View Screen" in your screen scheme? Or maybe upgraded SR to a newer version?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am trying to do the opposite here. I want to hide the comment on the view screen, but when the user hits the transition button, I want them to be able to insert the comment on this screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Tom L
try this:
def commentField = getFieldById(getFieldChanged())
commentField.setHidden(false)
if ( !getActionName())
{ // check if on edit screen
commentField.setHidden(true)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mark Markov
It didn't work either.
After you dismiss the Edit screen and click on the "Comment" button in the "Comments" tab in the View screen, the button disappears. The only way I know of getting the button back is by refreshing the browser, which is not acceptable for the users.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.