Workflow Comment popup does not show up
I am using Sitecore 9.1.
I made a custom workflow and assigned a few actions and commands to it as the below picture shows:
The "Default Comment Template" field is set to the standard comment template, and "Suppress comment" is not checked.
My problem is that, whenever I accept or reject an item within this workflow, the comment popup never appears. I am using the buttons highlighted below
I've been searching online for a while but have only found articles about wanting to hide the comment popup, but nothing about it not appearing in the first place..
Does anyone know what might be the cause of this issue?
workflow
add a comment |
I am using Sitecore 9.1.
I made a custom workflow and assigned a few actions and commands to it as the below picture shows:
The "Default Comment Template" field is set to the standard comment template, and "Suppress comment" is not checked.
My problem is that, whenever I accept or reject an item within this workflow, the comment popup never appears. I am using the buttons highlighted below
I've been searching online for a while but have only found articles about wanting to hide the comment popup, but nothing about it not appearing in the first place..
Does anyone know what might be the cause of this issue?
workflow
Please make sure popups are blocked on your browser.
– Amitabh Vyas
11 hours ago
@AmitabhVyas they are not blocked,i made sure
– mie
11 hours ago
The question should point out, Workbox is being used here - this is not Sitecore's standard workflow in play.
– Mark Cassidy♦
9 hours ago
add a comment |
I am using Sitecore 9.1.
I made a custom workflow and assigned a few actions and commands to it as the below picture shows:
The "Default Comment Template" field is set to the standard comment template, and "Suppress comment" is not checked.
My problem is that, whenever I accept or reject an item within this workflow, the comment popup never appears. I am using the buttons highlighted below
I've been searching online for a while but have only found articles about wanting to hide the comment popup, but nothing about it not appearing in the first place..
Does anyone know what might be the cause of this issue?
workflow
I am using Sitecore 9.1.
I made a custom workflow and assigned a few actions and commands to it as the below picture shows:
The "Default Comment Template" field is set to the standard comment template, and "Suppress comment" is not checked.
My problem is that, whenever I accept or reject an item within this workflow, the comment popup never appears. I am using the buttons highlighted below
I've been searching online for a while but have only found articles about wanting to hide the comment popup, but nothing about it not appearing in the first place..
Does anyone know what might be the cause of this issue?
workflow
workflow
edited 11 hours ago
Amitabh Vyas
1,8151632
1,8151632
asked 12 hours ago
miemie
30712
30712
Please make sure popups are blocked on your browser.
– Amitabh Vyas
11 hours ago
@AmitabhVyas they are not blocked,i made sure
– mie
11 hours ago
The question should point out, Workbox is being used here - this is not Sitecore's standard workflow in play.
– Mark Cassidy♦
9 hours ago
add a comment |
Please make sure popups are blocked on your browser.
– Amitabh Vyas
11 hours ago
@AmitabhVyas they are not blocked,i made sure
– mie
11 hours ago
The question should point out, Workbox is being used here - this is not Sitecore's standard workflow in play.
– Mark Cassidy♦
9 hours ago
Please make sure popups are blocked on your browser.
– Amitabh Vyas
11 hours ago
Please make sure popups are blocked on your browser.
– Amitabh Vyas
11 hours ago
@AmitabhVyas they are not blocked,i made sure
– mie
11 hours ago
@AmitabhVyas they are not blocked,i made sure
– mie
11 hours ago
The question should point out, Workbox is being used here - this is not Sitecore's standard workflow in play.
– Mark Cassidy♦
9 hours ago
The question should point out, Workbox is being used here - this is not Sitecore's standard workflow in play.
– Mark Cassidy♦
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
For bulk workflow operations there is a setting which decides whether the comment box should be displayed or not.
Add
<setting name="Workbox.SingleCommentForBulkOperation">
<patch:delete />
</setting>
<setting name="Workbox.SingleCommentForBulkOperation" value="true" />
setting via a patch file to you App_Config
.
The first line makes sure that if there is a setting with false
already there, it will be removed.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "664"
};
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%2fsitecore.stackexchange.com%2fquestions%2f17100%2fworkflow-comment-popup-does-not-show-up%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
For bulk workflow operations there is a setting which decides whether the comment box should be displayed or not.
Add
<setting name="Workbox.SingleCommentForBulkOperation">
<patch:delete />
</setting>
<setting name="Workbox.SingleCommentForBulkOperation" value="true" />
setting via a patch file to you App_Config
.
The first line makes sure that if there is a setting with false
already there, it will be removed.
add a comment |
For bulk workflow operations there is a setting which decides whether the comment box should be displayed or not.
Add
<setting name="Workbox.SingleCommentForBulkOperation">
<patch:delete />
</setting>
<setting name="Workbox.SingleCommentForBulkOperation" value="true" />
setting via a patch file to you App_Config
.
The first line makes sure that if there is a setting with false
already there, it will be removed.
add a comment |
For bulk workflow operations there is a setting which decides whether the comment box should be displayed or not.
Add
<setting name="Workbox.SingleCommentForBulkOperation">
<patch:delete />
</setting>
<setting name="Workbox.SingleCommentForBulkOperation" value="true" />
setting via a patch file to you App_Config
.
The first line makes sure that if there is a setting with false
already there, it will be removed.
For bulk workflow operations there is a setting which decides whether the comment box should be displayed or not.
Add
<setting name="Workbox.SingleCommentForBulkOperation">
<patch:delete />
</setting>
<setting name="Workbox.SingleCommentForBulkOperation" value="true" />
setting via a patch file to you App_Config
.
The first line makes sure that if there is a setting with false
already there, it will be removed.
answered 10 hours ago
Marek MusielakMarek Musielak
10.5k11136
10.5k11136
add a comment |
add a comment |
Thanks for contributing an answer to Sitecore 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%2fsitecore.stackexchange.com%2fquestions%2f17100%2fworkflow-comment-popup-does-not-show-up%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
Please make sure popups are blocked on your browser.
– Amitabh Vyas
11 hours ago
@AmitabhVyas they are not blocked,i made sure
– mie
11 hours ago
The question should point out, Workbox is being used here - this is not Sitecore's standard workflow in play.
– Mark Cassidy♦
9 hours ago