Hello, I work for a recent corporate licensee, and when we were integrating jQWidgets into our codebase we noticed a problem. Normally the jQWidgets code is very careful not to assume that $ is the jQuery function. However, at the end of jqxwindow.js (in the most recent build, 2.8.0) there is a usage of the dollar sign which is not as careful. We have our own JS library which binds $ to another function, so we do not use it for the jQuery function, and thus the code in jqxwindow.js causes an error when we load it. Here’s the exact line:
$.extend($.jqx._jqxWindow.prototype, resizeModule);
Given the way that the other code is written, this appears to be a bug. What do you guys think? Thanks!