I have an apex application recently upgraded to 19.2 . In one of the form I have a button. When this button is clicked , a popup window will open with selection for radio parameter. Once the parameter is selected and clicked ok, an excel report will be generated. In my case when the first button is clicked The popup window will come and at the same time there is error in the developer tool bar. When Inspect I can see following error,
Uncaught TypeError: Cannot read property 'nodeType' of undefined
at d (desktop_all.min.js?v=19.2.0.00.18:27)
at e.fn.init.a.fn.position (desktop_all.min.js?v=19.2.0.00.18:27)
at a.<computed>.<computed>._position (desktop_all.min.js?v=19.2.0.00.18:32)
at a.<computed>.<computed>._position (desktop_all.min.js?v=19.2.0.00.18:27)
at a.<computed>.<computed>.open (desktop_all.min.js?v=19.2.0.00.18:32)
at a.<computed>.<computed>.open (desktop_all.min.js?v=19.2.0.00.18:27)
at a.<computed>.<computed>._init (desktop_all.min.js?v=19.2.0.00.18:32)
at a.<computed>.<computed>._init (desktop_all.min.js?v=19.2.0.00.18:27)
at a.<computed>.<computed>._createWidget (desktop_all.min.js?v=19.2.0.00.18:27)
at new a.<computed>.<computed> (desktop_all.min.js?v=19.2.0.00.18:27)
[DOM] Found 5 elements with non-unique id #: (More info: https://goo.gl/9p2vKq))
<input type="button" value="Generate MS-Excel Report" onclick="P3_popupRptOpt();" id="" class="lto61711422194639948_0">
<input type="button" value=" " onclick="P3_ShowWeight(event);" id="" class="lto65226765575138890_0" style="display:none;">
<input type="button" value="Hide Weight" onclick="P3_HideWeight();" id="" class="lto65226956056138892_0" style="display:none;">
<input type="button" value="Show Dimension" onclick="P3_ShowVolume(event);" id="" class="lto66725254960859110_0" style="display:none;">
<input type="button" value="Hide Dimension" onclick="P3_HideVolume();" id="" class="lto66724983011793543_0" style="display:none;">
In the second section , I can see id is null., I tried to put static id for each element, But it does not work.
can someone please help
George