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

paul.edmondson

Members
  • Posts

    3
  • Joined

  • Last visited

paul.edmondson'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. I aready have a support ticket with jaspersoft for this issue. But taking a long time and woul be nice to see if anyone else has the same issue or has got it woking loading as a module. Has anybody got this working at all, loaded as and AMD module and displaying a report. I had got it to load vizualize as a module. BUT failed as soon as you tried the initilalise visualizeJS. The point where it tries to remotely acquire all of its remote dependancies and then fails (it seems to have no RequireJS config from what I can tell) .
  2. Use the 'changeTotalPages' event to capture the number of pages int the report. The event will fire only when the number of pages in the report changes. This is what I am using. See the programming guide e.g. var rerport = v.report({ resource: 'public/reports/myreportURI', container:'#container', events: { reportCompleted: function(status) { console.log('Visualize:Report Completed'); }, changeTotalPages: function(totalPages) { console.log(totalPages); }, pageFinal: function(el) { }, beforeRender: function(el) { } } });
  3. Is this a bug? Sometimes the beforeRender event gets called twice. Which tehn causes other issues when relying on this event.
×
×
  • Create New...