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 when mouse is over control
posted

I use 2014.1 SR 2008

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

see attached images


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,

});

});

Images.zip
Parents
No Data
Reply
  • 2715
    Verified Answer
    posted

    I found the error

    in Jquery-ui ver. 1.9.2 .ui-widget-overlay is position set to absolute

    but in 1.11.0 its set to fixed

    I use 1.11.0

    If I change position in 1.11.0 to absolute it Works as normal

Children
No Data