I got this error although it works in another JS file well. I spent more than 5 hours trying to solve this error and I found only the output of the debug
Exception is about to be caught by JavaScript library code at line 16, column 12 in ms-appx://377330db-017c-4f7c-9549-66f0d9ea1e08/pages/sience/contextControl.js 0x800a138f - JavaScript runtime error: Unable to get property 'winControl' of undefined or null reference.
my question how to identify the winControl object
<body>
<div class="contextControlScenario">
<div id="contextControl_ItemTemplate" data-win-control="WinJS.Binding.Template" style="display: none">
<img src= "#" class="image" data-win-bind="src: picture; alt: title" />
</div>
<div>
<div id="contextControl_FlipView" class="flipView"
data-win-control="WinJS.UI.FlipView"
data-win-options="{ itemDataSource: DefaultData.bindingList.dataSource,
itemTemplate: select('#contextControl_ItemTemplate') }">
</div>
<div id="ContextContainer"></div>
</div>
</div>
</body>
and here the JS file
(function () {
"use strict";
var myFlipview = null;
var page = WinJS.UI.Pages.define("/pages/sience/contextControl.html", {
processed: function (element, options) {
// WinJS.UI.processAll() is automatically called by the Pages infrastructure by the time this
// function gets called, and it has processed the div with data-win-control="WinJS.UI.FlipView"
myFlipview = document.getElementById("contextControl_FlipView").winControl;
var msg = new Windows.UI.Popups.MessageDialog("No internet connection has been found.");
msg.showAsync();
}
});
})();
just updating in the default.js file solved the prooblem
function activated(eventObject) {
if (eventObject.detail.kind === Windows.ApplicationModel.Activation.ActivationKind.launch) {
// Use setPromise to indicate to the system that the splash screen must not be torn down
// until after processAll and navigate complete asynchronously.
eventObject.setPromise(WinJS.UI.processAll().then(function () {
// Navigate to either the first scenario or to the last running scenario
// before suspension or termination.
var msg = new Windows.UI.Popups.MessageDialog("No internet connection has been found.");
msg.showAsync();
var url = "/html/contextControl.html";
return WinJS.Navigation.navigate(url);
}));
}
}
WinJS.Navigation.addEventListener("navigated", function (eventObject) {
var url = "/html/contextControl.html";
eventObject.detail.setPromise(WinJS.UI.Pages.render(url));
});
data-win-ontrolinstead ofdata-win-control? If so, try fixing them first and see what happens. – abarnert Jan 25 at 22:55document.getElementById("contextControl_FlipView")is returningnullorundefined. So, the question is, why? To debug this, add some debugging code that walks or searches or just dumps out the DOM so you can see what's wrong here. If you can't do that, at least post a SSCCE so others have a chance at debugging it for you, instead of guessing at what might possibly be wrong. – abarnert Jan 25 at 23:16