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

luke_9

Members
  • Posts

    1
  • Joined

  • Last visited

luke_9'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 am trying to create controls to move between the different pages in a report generated from another report. A drill down repor is created from the first report and paramaters are passed from the report to the drilldown. The drilldown report is being created from the event on the linkOptions. I've added what this looks like below (not a working example). I have tried different methods for pagination but can't get it working possibly because the drilldown is created via an event on the first report. How can pagination control next page, current page, previous page etc be made to work with a drilldown report? var report = v.report({ resource: "", container: "#container",linkOptions: { events: { "click": function (ev, link) { drilldown = v("#drill-down").report({ resource: link.parameters._report, }, events: { "click": function(ev, link){ var url = link.href; window.open(url,"_blank"); } }, error: function (err) { alert(err.message); }, params: { link.paramaters.... } }); Thanks
×
×
  • Create New...