Changeset 19879 in main for trunk/ibisph-view/src/main/webapp/xslt/html/indicator/index/table/Page.xslt
- Timestamp:
- 02/20/20 22:56:16 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ibisph-view/src/main/webapp/xslt/html/indicator/index/table/Page.xslt
r19781 r19879 17 17 18 18 19 <xsl:param name="Page.pageTitle" ibis:doc="Page's title text.">Sortable, Filterable Table of All Health Indicators</xsl:param>19 <xsl:param name="Page.pageTitle" ibis:doc="Page's title text.">Sortable, Filterable Table of all Health Indicator Reports</xsl:param> 20 20 21 21 <xsl:param name="DataSources"/> … … 23 23 24 24 <xsl:param name="Page.overviewContent" ibis:doc="localizes the cat index overview content. Set blank to turn this off."> 25 Welcome to the selection table of all available health indicator 26 reports. The table below provides some basic data that can be used refine 27 the indicator report selections. 28 29 To view a health indicator report, locate the indicator title in the 30 table below and click on that report's title link. 31 32 You can use the "Seach..." input field below, to narrow your selections to 33 only those indicators that contain the entered keyboard or phase. 34 35 Using the menu for each colum you can sort the rows, filter the column's 36 values to match your specified criteria, you can hide/show columns as well 37 as change the column ordering. You can also group the rows by any column. 25 Click on an indicator report link to view a report. Use the search box to 26 search the entire table. Click on a column header to sort by that column. 27 Use the table's header column menus (<span font-icon="" style="background-color: #ddd"/>) to filter 28 table rows and/or hide/unhide columns. 38 29 </xsl:param> 39 30 … … 58 49 } 59 50 ,"theme": "silver" 60 , toolbar: ["search"]51 ,"toolbar": [ { "template": kendo.template($("#gridSearchTemplate").html()) } ] 61 52 ,"dataSource": kendoDataSource 62 53 ,"columns": … … 64 55 { 65 56 "field": "name" 66 ,"title": "Indicator Profile Name"57 ,"title": "Indicator Profile ID" 67 58 ,"hidden": true 68 59 } 69 60 ,{ 70 61 "field": "title" 71 ,"title": "Indicator Title"62 ,"title": "Indicator Report Title" 72 63 ,"template": "<a href=\"../summary/#=name#.html\">#=title#</a>" 73 64 } 74 65 ,{ 75 66 "field": "viewNames" 76 ,"title": " View Names"67 ,"title": "Data View IDs" 77 68 ,"hidden": true 78 69 ,encoded: false … … 85 76 ,{ 86 77 "field": "dataSourceNames" 87 ,"title": "Data Source Names"78 ,"title": "Data Source IDs" 88 79 ,"hidden": true 89 80 ,encoded: false … … 96 87 ,{ 97 88 "field": "orgUnitName" 98 ,"title": " Owning Program Name"89 ,"title": "Authoring Program ID" 99 90 ,"hidden": true 100 91 /* … … 115 106 ,{ 116 107 "field": "orgUnitTitle" 117 ,"title": " Owning Program"108 ,"title": "Authoring Program" 118 109 } 119 110 ,{ … … 130 121 131 122 <xsl:template name="Page.contentBody"> 132 <xsl:copy-of select="$Page.overviewContent"/> 123 <p><xsl:copy-of select="$Page.overviewContent"/></p> 124 125 <!-- as per: https://www.telerik.com/forums/search-panel-and-toolbar-template --> 126 <script id="gridSearchTemplate" type="text/x-kendo-template"> 127 <span class="k-textbox k-grid-search k-display-flex"> 128 <input autocomplete="off" placeholder="Filter..." title="Filter..." class="k-input"/> 129 <span class="k-input-icon"> 130 <span class="k-icon k-i-search"></span> 131 </span> 132 </span> 133 </script> 133 134 134 135 <div id="grid"/>
Note: See TracChangeset
for help on using the changeset viewer.