| author | Sidharth Singh | 2012-03-27 04:11:17 (EDT) |
|---|---|---|
| committer | Manik Kishore | 2012-06-19 07:23:51 (EDT) |
| commit | a31a047ae9b96887ad492efdc7d18256edb64515 (patch) (side-by-side diff) | |
| tree | 11e9e2903dfc19b77aee267191477834dfe2b661 | |
| parent | dc095b0fa8675c11bceec7692c9e9b671be85671 (diff) | |
| download | org.eclipse.stardust.ui.web-a31a047ae9b96887ad492efdc7d18256edb64515.zip org.eclipse.stardust.ui.web-a31a047ae9b96887ad492efdc7d18256edb64515.tar.gz org.eclipse.stardust.ui.web-a31a047ae9b96887ad492efdc7d18256edb64515.tar.bz2 | |
Jira-ID: CRNT-24296
1)Changed the and condition to or condition on delegate and abort for row.defaultCaseActivity and row.delegable
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@54938 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | process-portal/src/main/resources/META-INF/xhtml/processportal/worklistViewColumns.xhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/process-portal/src/main/resources/META-INF/xhtml/processportal/worklistViewColumns.xhtml b/process-portal/src/main/resources/META-INF/xhtml/processportal/worklistViewColumns.xhtml index 2b4846d..099e71b 100644 --- a/process-portal/src/main/resources/META-INF/xhtml/processportal/worklistViewColumns.xhtml +++ b/process-portal/src/main/resources/META-INF/xhtml/processportal/worklistViewColumns.xhtml @@ -130,7 +130,7 @@ <!-- Delegate Dialog -->
<ice:commandLink
actionListener="#{worklistTableBean.openDelegateDialog}"
- disabled="#{!row.delegable and row.defaultCaseActivity}">
+ disabled="#{!row.delegable or row.defaultCaseActivity}">
<pc:automationTag value="auto-PP-WorkList-ActionsDelegate" standAlone="false"/>
<ice:graphicImage
value="/plugins/views-common/images/icons/process-history/delegate.png"
@@ -144,7 +144,7 @@ <!-- Abort Dialog -->
<ice:commandLink actionListener="#{worklistTableBean.openAbortDialog}"
- disabled="#{!row.abortActivity and row.defaultCaseActivity}">
+ disabled="#{!row.abortActivity or row.defaultCaseActivity}">
<pc:automationTag value="auto-PP-WorkList-ActionsAbort" standAlone="false"/>
<ice:graphicImage
url="/plugins/views-common/images/icons/cross.png"
|

