Jump to content
We've recently updated our Privacy Statement, available here ×

omer.etrog

Members
  • Posts

    4
  • Joined

  • Last visited

omer.etrog's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. the problem is that that the code is using 'mouseup' event and not 'click'. instead of the above code, you can use: <script> function triggerEvent(el, type){ if ('createEvent' in document) { // modern browsers, IE9+ var e = document.createEvent('HTMLEvents'); e.initEvent(type, false, true); el.dispatchEvent(e); } else { // IE 8 var e = document.createEventObject(); e.eventType = type; el.fireEvent('on'+e.eventType, e); } } self.setInterval(function(){ var el = document.getElementById("dataRefreshButton"); triggerEvent(el,'mouseup'); },10000); </script>[/code]
  2. I had the same issue when I categorizing the bar. It too me a while and I also tried the above anser that didn't help me. I found out that you can put empty string in the Series and that solve the issue
  3. I tried all kind of options , without any luck. I have Hbase installed on my machine (https://hbase.apache.org/cygwin.html) . I was able to connect with my JasperReport server (copy the phoenix-4.7.0-HBase-1.0-client-without-hbase.jar to the c:Jaspersoftjasperreports-server-cp-6.4.0apache-tomcatwebappsjasperserverWEB-INFlib directory) But no luck using the Jasperreport Studio. anyone tired it lately and hava any leads?
×
×
  • Create New...