Hi,
I have a global search feature which I copied from the CRM sample application. I process and display the results using a html view.
In my results, I wanted to copy the "Edit" button you see under the Views so I used the code below
<tr class="zc-viewrow zc-row-1" cls="zc-row-1" reclinkid="<%=c.ID%>" elname="zc-viewrowEl" receditallowed="true" recdeleteallowed="true" receditlink="/essistmgmt/assets/CUSTOMERS/record-edit/CUSTOMERS_View/<%=c.ID%>/" recprintlink="/essistmgmt/assets/record-print/CUSTOMERS_View/<%=c.ID%>/" recsummarylink="/essistmgmt/assets/record-summary/CUSTOMERS_View/<%=c.ID%>/">
<td class="zc-edit" nowrap="" style="text-align:center;width:45px;" elname="zc-rowActionsTdEl">
<a class="zc-edit-btn" grpelname="zc-showMoreRecordActionEl" elname="zc-showEditFormEl" href="/essistmgmt/assets/CUSTOMERS/record-edit/CUSTOMERS_View/<%=c.ID%>/" reclinkid="<%=c.ID%>" style=" position: relative; display: inline; z-index: 1;" target="_blank" >Edit<span class="zc-arrw-old-edit"><img height="10" width="10" src="/appcreator/live/01/images/more_drop_arw.png" style="visibility:hidden;"></span> </a>
</td>
</tr>
The edit button works fine, but the the dropdown feature does not work. I also want the ability to Delete, Duplicate, Print or View the record.
How can I enable the dropdown to work?