Deleted.

cancel
Showing results for 
Search instead for 
Did you mean: 
anon26949
Established Member
1 Solution

Accepted Solutions
muralidharand
Established Member II

Re: Custom tables in the workflow details page

Jump to solution

You should insert the table in the <div id="${el}-summary-form-section"> div to display the table in the top section.

 

<div id="${el}-summary-form-section">            <h3>               ${msg("header.workflowSummary")}            </h3>..........<div class="yui-gf">                     <div class="yui-u first avatar">                        <img id="${el}-recentTaskOwnersAvatar" src="" alt="${msg("label.avatar")}">                     </div>                     <div class="yui-u">                        <div id="${el}-recentTaskOwnersCommentLink"></div>                        <div id="${el}-recentTaskOwnersComment" class="task-comment form-element-border"></div>                     </div>                  </div>               </div>               <div class="clear"></div>            </div><!-- this is my custom table and display in the screen at the top. -->           <div id="${el}-addl-summary-form-section" style="display:block">            <table>                <tr><td>Name</td></tr>                <tr><td>Murali</td></tr>                </table>        </div>         </div>‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

View solution in original post

1 Reply
muralidharand
Established Member II

Re: Custom tables in the workflow details page

Jump to solution

You should insert the table in the <div id="${el}-summary-form-section"> div to display the table in the top section.

 

<div id="${el}-summary-form-section">            <h3>               ${msg("header.workflowSummary")}            </h3>..........<div class="yui-gf">                     <div class="yui-u first avatar">                        <img id="${el}-recentTaskOwnersAvatar" src="" alt="${msg("label.avatar")}">                     </div>                     <div class="yui-u">                        <div id="${el}-recentTaskOwnersCommentLink"></div>                        <div id="${el}-recentTaskOwnersComment" class="task-comment form-element-border"></div>                     </div>                  </div>               </div>               <div class="clear"></div>            </div><!-- this is my custom table and display in the screen at the top. -->           <div id="${el}-addl-summary-form-section" style="display:block">            <table>                <tr><td>Name</td></tr>                <tr><td>Murali</td></tr>                </table>        </div>         </div>‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍