Hello,
I'm facing problem including jQuery library (needed for some external widget) into my SmartGWT app. The problem is that the application after including jquery by
does not load properly (blank page is seen). I compared output of developer console for cases when included and when not and the difference is:
I searched jquery JS file if there is function named registerStringMethods, but there is no such method. Any ideas what to do?:-)
I'm facing problem including jQuery library (needed for some external widget) into my SmartGWT app. The problem is that the application after including jquery by
Code:
<script src="js/wb/libs/jquery-1.7.1.min.js" type="application/javascript"></script>
Code:
WARN:Canvas:registerStringMethods() called with a bad argument: function () { var newObj = (this instanceof Array) ? [] : {}; for (i in this) { if (i == 'clone') continue; if (this[i] && typeof this[i] == "object") { newObj[i] = this[i].clone(); } else newObj[i] = this[i] } return newObj; }
Comment