<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi,<br>
    <br>
    Thanks. Interesting idea. To be integrated in a consistent way, here
    are the necessary steps.<br>
    <br>
    1- Use of the existing areas (ex. object_vorkflow, object_button,
    etc.) instead of creating a new one or using a hack (ie. presence of
    icon property) to take decision of displaying something in an implicitely
    defined UI area<br>
    2- Port portal type actions so that workflow actions and portal type
    actions use same data structrure (ideally, by replacing DCWorkflow
    with ERP5Workflow and merging all patches to DCWorkflow into
    ERP5Workflow). This way, implementation will be consistent for all
    types of actions and there will be no question whether workflow
    actions should provide icons or not. Moreover, workflow actions in
    menus could also display icons in this case.<br>
    3- Add functional test<br>
    <br>
    Once this is done, it can be integrated. Else, it is better to keep
    it as a patch for customer specific configuration.<br>
    <br>
    Also, use of icons should be limited to minimum in generic bt5 since
    menus are more explicit and require less training / documentation.
    Icons are useful for customer projects whenever productivity matters
    more than UI consistency.<br>
    <br>
    Regards,<br>
    <br>
    JPS.<br>
    <br>
    <br>
    <br>
    Le 22/12/2011 12:49, Boris Kocherov a &eacute;crit&nbsp;:
    <blockquote cite="mid:20111222114956.GA25639@bk-1015B.localdomain"
      type="cite">
      <pre wrap="">If the field  "Icon URL (formatted)" in
portal_workflow/test_workflow/transitions/test_action/manage_properties is
fulfiled by the icon url, then the icon appears in top right conner (near the
save button) of the documents which have the test_workflow

---
 .../portal_skins/erp5_xhtml_style/view_main.xml    |   19 ++++++++++++++-----
 1 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/view_main.xml b/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/view_main.xml
index 8ed3d47..2d00c3a 100644
--- a/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/view_main.xml
+++ b/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/view_main.xml
@@ -62,7 +62,7 @@
             tal:content="string:installUnsavedChangesWarning(\'$message\')"&gt;\n
           &lt;/script&gt;\n
           &lt;div class="document"\n
-               tal:define="actions actions/object_view | python: []"&gt;\n
+               tal:define="actions_object_view actions/object_view | python: []"&gt;\n
             &lt;div class="actions"\n
                  tal:condition="python: (not is_web_mode or editable_mode) and len(actions)"&gt;\n
               &lt;button tal:condition="python: not is_web_mode and form_action"\n
@@ -73,8 +73,18 @@
                 &lt;span class="image"&gt;&lt;/span&gt;\n
                 &lt;span class="description" i18n:translate="" i18n:domain="ui"&gt;Save&lt;/span&gt;\n
               &lt;/button&gt;\n
+              &lt;tal:block tal:repeat="action actions/workflow"&gt;\n
+                &lt;button type="button" name="Base_doAction:method" tal:condition="action/icon"\n
+                  class="save"\n
+                  tal:attributes="title action/name;\n
+                  onclick string:location.href=\'${action/url}\';"\n
+                  i18n:attributes="title" i18n:domain="ui" &gt;\n
+                  &lt;span class="image" tal:attributes="style string:background-image:url(\'${portal/portal_url}/${action/icon}\');"&gt;&lt;/span&gt;\n
+                  &lt;span class="description" tal:content="action/name"&gt;&lt;/span&gt;\n
+                &lt;/button&gt;\n
+              &lt;/tal:block&gt;\n
               &lt;ul&gt;\n
-                &lt;li tal:repeat="action actions"\n
+                &lt;li tal:repeat="action actions_object_view"\n
                     tal:attributes="class python: action == current_action and \'selected\' or \'not_selected\'"&gt;\n
                   &lt;a tal:attributes="href python: \'%s%s%s\' % (action[\'url\'], \'?\' in action[\'url\'] and \'&amp;amp;\' or \'?\', http_parameters)"\n
                     &gt;&lt;span i18n:translate="" i18n:domain="ui" tal:content="action/name"&gt;action_name&lt;/span&gt;&lt;/a&gt;\n
@@ -84,7 +94,7 @@
             &lt;div tal:attributes="class python: editable_mode and \'content editable\' or \'content\'"&gt;\n
               &lt;tal:block metal:define-slot="main" /&gt;\n
               &lt;div class="bottom_actions"\n
-                   tal:condition="python: is_web_mode and editable_mode and len(actions) and form_action"&gt;\n
+                   tal:condition="python: is_web_mode and editable_mode and len(actions_object_view) and form_action"&gt;\n
                 &lt;input type="hidden" name="form_action" value=""\n
                        tal:attributes="value form_action" /&gt;\n
                 &lt;input type="hidden" name="edit_document_url" value=""\n
@@ -114,8 +124,7 @@
       &lt;/tal:block&gt;\n
     &lt;/tal:block&gt;\n
   &lt;/tal:block&gt;\n
-&lt;/tal:block&gt;\n
-
+&lt;/tal:block&gt;
 
 ]]&gt;&lt;/unicode&gt; &lt;/value&gt;
         &lt;/item&gt;
</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Erp5-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Erp5-dev@erp5.org">Erp5-dev@erp5.org</a>
<a class="moz-txt-link-freetext" href="https://mail.tiolive.com/mailman/listinfo/erp5-dev">https://mail.tiolive.com/mailman/listinfo/erp5-dev</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>