I am looking to modify the inbox within WebTop 6.7SP2 so it is a column - instead of the default method of displaying on a second row for inbox items.
To do this I have performed the following modifications:
Extended webcomponent/config/navigation/inbox/inboxlist_component.xml
changed the <start> to a custom inbox.jsp
added a <column> for docNames to the list of <columns>
<column>
<attribute>docNames</attribute>
<label>
<nlsid>MSG_TASK_ATTACHMENTS</nlsid>
</label>
<visible>true</visible>
</column>
Modified the inbox.jsp referenced above to point to a custom inbox_list_body.jsp
Modified the inbox_list_body.jsp to:
remove the second row option of adding the attachments to the inbox items
add within the <dmf:celllist> the following for attachments
<dmf:celltemplate field='docNames'>
<dmf:datagridTh scope='col' cssclass='doclistfilenamedatagrid leftAlignment' resizeable="true">
<b><nobr><dmf:datasortlink cssclass='doclistbodyDatasortlink' name='sort20' nlsid='MSG_TASK_ATTACHMENTS' column='docNames' /></nobr></b>
</dmf:datagridTh>
</dmf:celltemplate>
added within the data section (I believe is what it is) of the <dmf:celllist> the following
<dmf:celltemplate field='docNames'>
<dmf:datagridRowTd nowrap="true" cssclass='doclistfilenamedatagrid'>
<dmf:label datafield='docNames' />
</dmf:datagridRowTd>
</dmf:celltemplate>
After performing the above changes I see Attachments in the default list of columns that can be included in the inbox, but the inbox itself never displays the Attachments column. I assume I must be missing modifying a required file but so far have been unable to determine what file that is. Any assistance with this would be greatly appreciated!