1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | <?php require('report_trend_section.php');?> <div class="owa_reportSectionContent"> <table style="width:100%;"> <TR> <TD width="50%" valign="top"> <div class="owa_reportSectionContent"> <div class="section_header">Dom IDs</div> <div style="min-width:300px;" id="topDomIds"></div> <script> var url = '<?php echo $this->makeApiLink(array('do' => 'getResultSet', 'metrics' => 'domClicks', 'dimensions' => 'domElementId', 'constraints' => $constraints, 'sort' => 'domClicks-', 'resultsPerPage' => 5, 'format' => 'json'), true);?>'; rshre = new OWA.resultSetExplorer('topDomIds'); rshre.asyncQueue.push(['refreshGrid']); rshre.load(url); </script> </div> <div class="owa_reportSectionContent"> <div class="section_header">Name Attributes</div> <div style="min-width:300px;" id="topDomNames"></div> <script> var url = '<?php echo $this->makeApiLink(array('do' => 'getResultSet', 'metrics' => 'domClicks', 'dimensions' => 'domElementName', 'constraints' => $constraints, 'sort' => 'domClicks-', 'resultsPerPage' => 5, 'format' => 'json'), true);?>'; rshre = new OWA.resultSetExplorer('topDomNames'); rshre.asyncQueue.push(['refreshGrid']); rshre.load(url); </script> </div> </TD> <TD width="" valign="top"> <div class="owa_reportSectionContent"> <div class="section_header">HTML Tags</div> <div style="min-width:300px;" id="topHtmlTags"></div> <script> var url = '<?php echo $this->makeApiLink(array('do' => 'getResultSet', 'metrics' => 'domClicks', 'dimensions' => 'domElementTag', 'constraints' => $constraints, 'sort' => 'domClicks-', 'resultsPerPage' => 5, 'format' => 'json'), true);?>'; rshre = new OWA.resultSetExplorer('topHtmlTags'); rshre.asyncQueue.push(['refreshGrid']); rshre.load(url); </script> </div> <div class="owa_reportSectionContent"> <div class="section_header">Dom Classes</div> <div style="min-width:300px;" id="topDomClasses"></div> <script> var url = '<?php echo $this->makeApiLink(array('do' => 'getResultSet', 'metrics' => 'domClicks', 'dimensions' => 'domElementClass', 'constraints' => $constraints, 'sort' => 'domClicks-', 'resultsPerPage' => 5, 'format' => 'json'), true);?>'; rshre = new OWA.resultSetExplorer('topDomClasses'); rshre.asyncQueue.push(['refreshGrid']); rshre.load(url); </script> </div> </TD> </TR> </table> </div> <?php require_once('js_report_templates.php');?> |