I am trying to get AJAX extensions working on an existing Web Forms application.
I added AjaxControlToolkit using Nuget. As a test, I set the page using a button and added a button confirmation extension.
I get this error:
0x800a138f - JavaScript Runtime Error: Unable to get 'UI' property undefined or null reference
In the following line of dynamically created Javascript:
$create(Sys.Extended.UI.ConfirmButtonBehavior, {"ConfirmText":"Are ya totally sure?","id":"MainContent_Button1_ConfirmButtonExtender"}, null, null, $get("MainContent_Button1"));
I assume that one of the libraries is the wrong version, but I donβt know how to understand it. I tried updating packages using Nuget.
Any ideas?
Thanks!
pStan source share