Posted 17 January 2020, 6:27 am EST
I have a javascript function which calls a webmethod. After the webmethod I check one of the returned values and if it’s false I want to show a C1 Dialog but I am getting an error:-
Javascript runtime error: Unable to get property ‘_focusTabbable’ of undefined or null reference.
Here is my code to show the dialog:-
if (KeyInspectionPoints.indexOf('<Li>') < 0) {
$("#ctl00_ContentPlaceHolder1_MessageBox").c1dialog("option", "title", "Warning");
$("#ctl00_ContentPlaceHolder1_MessageBox_lblMessageBox").text('This CICs Key Inspections need to be numbered in order to be shown in the CIC Preview Report.');
$('#ctl00_ContentPlaceHolder1_MessageBox').c1dialog('open');
}