Ok everyone, so I am at a loss here why I am unable to get the Kendo window to open. In my quickwatch in the IDE, the window seems to build, but does not inherit the methods for Kendo Windows. I have followed all of the steps on Telerik's documentation about ordering of scripts, ensuring there are not multiple references to jQuery, etc. Alas, I cannot find the issue here. Code is as follows:
HTML:
<div class="panel panel-primary k-popup k-window" id="groupMembershipWindow"><div class="table-bordered"> <h1> THIS IS A TEST </h1> <table> <thead> Group Members </thead> <tbody> <tr> <td></td> </tr> <tr></tr> </tbody> </table></div>AngularJS
$scope.buildPopupWindow = function () { var windowOptions = { title: "Fuel Group Memberships", width: 1400, height: 400, modal: true, content: "app/groups/groupMembershipsPopupWindow.html", center: true, visible: false, actions: ["close"], //open: function (e) { // $("#groupMembershipWindow").open(); //}, close: function (e) { angular.element("#groupMembershipWindow").destroy(); } }; var groupWindow = angular.element("#groupMembershipWindow"); groupWindow.kendoWindow(windowOptions); groupWindow.data("kendoWindow"); $scope.data.groups.currentPopup = groupWindow; groupWindow.center().open(); };