Produced by Araxis Merge on 6/9/2017 3:51:43 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Fri Jun 9 19:51:43 2017 UTC | ||
| 2 | eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-web\src\main\webapp\WEB-INF\web | monthlyReceivedDocumentsReport.jsp | Fri Apr 21 20:15:58 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 120 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | <%-- | |||||
| 2 | Docume nt : mon thlyReceiv edDocument sReport | |||||
| 3 | Create d on : Nov 4, 2016, 8:18:47 AM | |||||
| 4 | Author : Joh ann Sonnen berg | |||||
| 5 | --%> | |||||
| 6 | ||||||
| 7 | <%@taglib tagdir="/W EB-INF/tag s/formatti ng" prefix ="f" %> | |||||
| 8 | <%@taglib tagdir="/W EB-INF/tag s/date" pr efix="d" % > | |||||
| 9 | <%@taglib uri="http: //java.sun .com/jsp/j stl/core" prefix="c" %> | |||||
| 10 | ||||||
| 11 | <f:mainTem plate head erText="Mo nthly Rece ived Docum ents Repor t"> | |||||
| 12 | <scrip t language ="JavaScri pt"> | |||||
| 13 | $( document). ready(func tion () { | |||||
| 14 | //initia l data tab le setup a nd call fo r the firs t recordse t | |||||
| 15 | $.fn.dat aTable.ext .errMode = 'none'; | |||||
| 16 | ||||||
| 17 | setProce ssingForDa taTable('t blReport', 7); | |||||
| 18 | ||||||
| 19 | var repo rtTable = $('#tblRep ort').Data Table({ | |||||
| 20 | defe rLoading: 0, | |||||
| 21 | dest roy: true, | |||||
| 22 | sear ching: fal se, | |||||
| 23 | proc essing: tr ue, | |||||
| 24 | serv erSide: tr ue, | |||||
| 25 | pagi ng: false, | |||||
| 26 | info : false, | |||||
| 27 | orde r: [[0, 'd esc']], | |||||
| 28 | colu mnDefs: [ | |||||
| 29 | {className : "dt-head -center", targets: [ 0,1]}, | |||||
| 30 | {className : "dt-head -center dt -body-righ t", target s: [2]} | |||||
| 31 | ], | |||||
| 32 | "foo terCallbac k": functi on ( row, data, star t, end, di splay ) { | |||||
| 33 | var api = this.api() , data; | |||||
| 34 | ||||||
| 35 | // Update footer | |||||
| 36 | $(api.colu mn(2).foot er() ).htm l( | |||||
| 37 | api.co lumn(2, {p age:'curre nt'}).data ().sum() | |||||
| 38 | ); | |||||
| 39 | }, | |||||
| 40 | ajax : { | |||||
| 41 | url: "Mont hlyReceive dDocuments Report.do_ sec?doSear ch=true&st artYearMon th=" + $(' #startYear Month').va l(), | |||||
| 42 | dataSrc: f unction(js on){ | |||||
| 43 | $('.da taTables_e mpty').rem ove(); | |||||
| 44 | return json.data ; | |||||
| 45 | }, | |||||
| 46 | error: fun ction(o){ | |||||
| 47 | handle ErrorsInDa taTable('t blReport', o, 3); | |||||
| 48 | } | |||||
| 49 | }, | |||||
| 50 | lang uage: { | |||||
| 51 | emptyTable : "No reco rds found" , | |||||
| 52 | loadingRec ords: "" | |||||
| 53 | }, | |||||
| 54 | leng thMenu: [ 10, 25, 50 , 100, 250 , 500 ], | |||||
| 55 | page Length: 25 , | |||||
| 56 | scro llX:true, | |||||
| 57 | init Complete: function() { | |||||
| 58 | // Enable THEAD scro ll bars | |||||
| 59 | $('.dataTa bles_scrol lHead').cs s('overflo w', 'auto' ); | |||||
| 60 | ||||||
| 61 | // Sync TH EAD scroll ing with T BODY | |||||
| 62 | $('.dataTa bles_scrol lHead').on ('scroll', function () { | |||||
| 63 | $('.da taTables_s crollBody' ).scrollLe ft($(this) .scrollLef t()); | |||||
| 64 | }); | |||||
| 65 | }, | |||||
| 66 | dom: 'lipt<"pa d-bottom-2 0">ipr' | |||||
| 67 | }); | |||||
| 68 | ||||||
| 69 | reportTa ble.on('dr aw', funct ion () { | |||||
| 70 | addA riaToDataT able('tblR eport', re portTable) ; | |||||
| 71 | }); | |||||
| 72 | ||||||
| 73 | $('#btnS earch').on ('click', function ( ) { | |||||
| 74 | $('# results'). show(); | |||||
| 75 | repo rtTable.aj ax.url("Mo nthlyRecei vedDocumen tsReport.d o_sec?doSe arch=true& startYearM onth=" + $ ('#startYe arMonth'). val()).loa d(); | |||||
| 76 | }); | |||||
| 77 | ||||||
| 78 | $('#resu lts').hide (); | |||||
| 79 | }) ; | |||||
| 80 | </scri pt> | |||||
| 81 | ||||||
| 82 | <div c lass="form -container pad-botto m-20"> | |||||
| 83 | <f orm name=" searchForm "> | |||||
| 84 | <fieldse t> | |||||
| 85 | <leg end>Search Details</ legend> | |||||
| 86 | <div id="error Message" c lass="erro rs" style= "display: none;"></d iv> | |||||
| 87 | <div > | |||||
| 88 | <label for ="startDat e" class=" width-120" title="St art Month and Year"> Start Mont h/Year</la bel> | |||||
| 89 | <d:monthAn dYearDropd own fieldI d="startYe arMonth" f ieldName=" startYearM onth" enab leMultiple ="false" s tartYear=" 2010" star tMonth="Ja nuary" des criptor="$ {descripto rs['monthl yReceivedD ocumentRep ortStartMo nthYearFie ld']}" fie ldTitle="S tart Month and Year" /> | |||||
| 90 | </di v> | |||||
| 91 | </fields et> | |||||
| 92 | <div> | |||||
| 93 | <inp ut name="b tnSearch" id="btnSea rch" title ="Search" class="but ton" type= "button" v alue="Sear ch" /> | |||||
| 94 | </div> | |||||
| 95 | </ form> | |||||
| 96 | </div> | |||||
| 97 | ||||||
| 98 | <div i d="results "> | |||||
| 99 | <div i d="divRepo rtContent" > | |||||
| 100 | <t able id="t blReport" class="dis play" widt h="100%" c ellspacing ="0" role= "presentat ion"> | |||||
| 101 | <thead> | |||||
| 102 | <tr role="row" > | |||||
| 103 | <th role=" columnhead er"><span data-toolt ip="<c:out value="${ descriptor s['monthly ReceivedDo cumentRepo rtRemoteOr ganization Column']}" />">Remot e Organiza tion</span ></th> | |||||
| 104 | <th role=" columnhead er"><span data-toolt ip="<c:out value="${ descriptor s['monthly ReceivedDo cumentRepo rtUserColu mn']}" />" >User</spa n></th> | |||||
| 105 | <th role=" columnhead er"><span data-toolt ip="<c:out value="${ descriptor s['monthly ReceivedDo cumentRepo rtCountCol umn']}" /> " data-too ltip-posit ion="left" >Count</sp an></th> | |||||
| 106 | </tr > | |||||
| 107 | </thead> | |||||
| 108 | <tfoot> | |||||
| 109 | <tr role="row" > | |||||
| 110 | <%--Filled in by dat atables, t otal--%> | |||||
| 111 | <td role=" gridcell" class="tex t-left foo ter-bold-p ad-left-8" >Total:</t d> | |||||
| 112 | <td role=" gridcell"> </td> | |||||
| 113 | <td role=" gridcell" class="tex t-right fo oter-bold- pad-right- 9"></td> | |||||
| 114 | </tr > | |||||
| 115 | </tfoot> | |||||
| 116 | </ table> | |||||
| 117 | <d iv aria-li ve="polite " role="st atus" id=" tblReport_ info" clas s="dataTab les_info h idden">Sho ws monthly received documents summary da ta</div><% -- because we don't have the " Showing x of x" turn ed on for this table , we need this here to support aria --%> | |||||
| 118 | </div> | |||||
| 119 | </div> | |||||
| 120 | </f:mainTe mplate> |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.