Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2715
Page button is blocked
posted

I use ver. 14.1 in my project

When I move the mouse over the Report View control im MVC only Export, Print, Zoom and refesh buttons is available

the rest of the control is blocked

var rangeParameters = [{ Key: "Dato_Fra", Value: new Date(2013, 8, 30) },

{ Key: "Dato_Til", Value: new Date(2013, 9, 7) },

{ Key: "Uge", Value: "40" }];

$(document).ready(function () {

var _Fra = $("#Fra").text();

var _Til = $("#Til").text();

var _Uge = $("#Ugen").text();

var Fra = new Date(_Fra.substring(6), _Fra.substring(3, 5) - 1, _Fra.substring(0, 2));

var Til = new Date(_Til.substring(6), _Til.substring(3, 5) - 1, _Til.substring(0, 2));

rangeParameters[0].Value = Fra;

rangeParameters[1].Value = Til;

rangeParameters[2].Value = _Uge;

$("#viewer").igReportViewer({

renderSettings: {

definitionUri: "/Reports/Teknisk_Liste.igr",

serviceEndpointUri: "/ReportService1.svc/ajaxAddress/"

},

parameters: rangeParameters,

width: 900,

height: 650,

});

});