Our customer wants the ability to export Customer Directory for its members. I saw that this ability is available in Customer Directory of Web View which is not available to members.
Most members connect to WCM site and the Customer Directory of WCM or Public View does not provide abilty to Export to Excel or PDF or Word.
Please see the attached image and see the circled Export options I am talking about. Please let me know if you know the trick to make export buttons available in Public View or WCM.
| Attachment | Size |
|---|---|
| Customer Directory in WCM View.jpg | 152.69 KB |
| Customer Directory in Web View.jpg | 142.82 KB |
Hi Sandeep,For public view
Hi Sandeep,
For public view if you want to enable export options, you can add a new lister control which does the same as QueryResultGrid.
Open "directory.aspx" from "C:\Program Files (x86)\ASI\iMIS15\iMIS_public\Core" folder
put the following content in the content area.
runat="server" ID="CustomersGrid"
QueryPath="$/ContactManagement/DefaultSystem/Queries/Directory/Contacts" />
<asiweb:Lister2 id="CustomersGrid2"
runat="server"
AjaxEnabled="true"
SortingEnabled="true"
PagingEnabled="true"
PagerMode="Advanced"
PageSize="20"
ColumnReorderingEnabled="false"
DataSourceDocumentPath="$/ContactManagement/DefaultSystem/Queries/Directory/Contacts"
DeleteColumnLocation="None"
ExportButtonLocation="TopRight"
LinkTargetBehavior="SameWindow"
EditColumnLocation="None"
SelectColumnLocation="End"
EnableClientSideDelete="false"
UseUniformKey="false"
LinkTargetHeight="95%"
LinkTargetWidth="95%"
HideResultsOnInitialLoad = "Visible"
/>