Hi.
I have a requirement where users need to see some custom attributes in the thumbnail view.
I've tried to add componentes to "doclist_thumbnail_body.jsp" page, but with no success.
I know the code block responsible to show the object_name attribute is this:
<td height=16 nowrap>
<dmf:stringlengthformatter maxlen='16'>
<dmf:datagridRowEvent eventname="dblclick">
<dmf:link name='objectLink' onclick='onClickObject' runatclient='true' datafield='object_name'>
<dmf:argument name='id' datafield='r_object_id'/>
<dmf:argument name='type' datafield='r_object_type'/>
<dmf:argument name='isFolder' datafield='isfolder'/>
<dmf:argument name="isVirtualDoc" datafield='r_is_virtual_doc'/>
<dmf:argument name='assembledFromId' datafield='r_assembled_from_id'/>
<dmf:argument name="linkCount" datafield='r_link_cnt'/>
</dmf:link>
</dmf:datagridRowEvent>
</dmf:stringlengthformatter>
</td>
How can I achieve that?
Thank you.