Where the heck is getPopupTemplate() defined?
I'm trying to make a change to the popups due to font size issues, but I need to modify getPopupTemplate() so the toString() puts out something different, but I can't find where getPopupTemplate() is actually defined.
Steve
November 5,
In aw.js ? ;-)
Right between AW.Templates.Radio and AW.Templates.Frame.
November 5,
I looked there, but I didn't see any this.getPopupTemplate = function() or function getPopupTemplate() or anything like that, which is why I was confused. Is it some unspoken JavaScript syntax that I don't know yet?
November 10,
Popup template in the grid control is defined in /source/lib/grid/control.js line 79 -
obj.defineTemplate("popup", new AW.System.Template);
The call to defineTemplate() creates getPopupTemplate and setPopupTemplate methods.
Alex (ActiveWidgets)
November 10,