[progress Communities] [progress Openedge Abl] Forum Post: Popup/modal Window

  • Thread starter Thread starter jts-law
  • Start date Start date
Status
Not open for further replies.
J

jts-law

Guest
I'm using KUIB 2 and am trying to create a popup/modal window to show the user some information about their session. I found the following Stack Overflow thread but I can't get it to work from within my controller. https://stackoverflow.com/questions/17205046/using-a-modal-window-with-kendoui-inside-of-angularjs Basically, on my landing-page I put a link in my topSection.html that calls openUserProfilePopup(). The issue is that when openUserProfilePopup() runs, it errors on the call to setOptions because userProfilePopup (the kendo-window) isn't found. I can't find this object anywhere via the debugger either. I must be missing something, I just don't know what. topSection.html: controller.public.js: openUserProfilePopup() { this.userProfilePopupOptions = { width: 550, height: 400, visible: false, actions: ["Close"] }; this.userProfilePopup.setOptions(this.userProfilePopupOptions); this.userProfilePopup.center(); this.userProfilePopup.open(); } Louis

Continue reading...
 
Status
Not open for further replies.
Back
Top