jQuery UI Widgets › Forums › General Discussions › jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function
This topic contains 9 replies, has 6 voices, and was last updated by Peter Stoev 8 years, 3 months ago.
-
Author
-
December 11, 2015 at 3:18 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #79207
Hi,
I faced with jqx-all.js runtime exception.
The jqx-all.js is source revision.
Release revision is no problem.demos/jqxgrid/defaultfunctionality.htm
Rewriting the HTML, use jqx-all.js of source revision.Error message is “Uncaught TypeError: (intermediate value)(intermediate value)(intermediate value)(…) is not a function”. jqx-all.js(110324)
Would you please correct the jqx-all.js of source revision?
jQWidgets: v3.9.1
jQuery: v1.11.1thanks
December 14, 2015 at 7:59 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #79253Hi arcmec,
Thank you for your feedback. We will investigate why this occurs. We suggest you use the minified version instead. Alternatively, include only the files necessary for the widgets on your page.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/December 16, 2015 at 12:59 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #79360Hi Dimitar,
Thank you for response.
I often use source revision at creating application.
Investigate Thank you.
February 25, 2016 at 8:26 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #81822Hi,
is there an progress? I face the same issue since I’ve updated to version 4 and I can not use the minified because of I need to debug.
February 25, 2016 at 9:08 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #81829Hi tforgeard,
If you want to debug, you can use individual files. This file is not appropriate for debugging.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comAugust 9, 2016 at 11:17 pm jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #86437That seems like an unacceptable answer. If the jqx-all.js unminified file is not used to generate the minified version, then it is not possible to debug with different versions of the source and expect to get the same result.
August 10, 2016 at 1:55 pm jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #86462Hi jrotella,
jqx-all.js is a file which is built dynamically from all source files. Of course we have unminified version of the file. We do not include it in the build as it is 6MB+ and Yes it is not appropriate for debugging as it is quite big file.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comNovember 4, 2016 at 6:47 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #88724Hi all,
I am getting an error while using the source version of jqxwidgets in jqx-all.Below are the details:
Version:3.9.1
line no-182139
Error: ”
Uncaught TypeError: (intermediate value)(intermediate value)(intermediate value)(…) is not a function(…)”Since the new version does not have jqx-all file in soure code and for debugging we need the unminified version only.Please let us know if there is any solution for it. Below i have tried to give the example where the error actually occurred.
The star mark & the arrow mark is the place where the error comes.
(function ($) { <-*
$.extend($.jqx._jqxGrid.prototype, {
exportdata: function (datatype, filename, exportHeader, rows, exportHiddenColumns, exportServer, charset) {
if (!$.jqx.dataAdapter.ArrayExporter) {
throw ‘jqxGrid: Missing reference to jqxdata.export.js!’;
}November 4, 2016 at 9:52 am jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #88739Hi,
I just found the solution for the issue which i have posted above. There was a semicolon missing just infront of the function.
Given below is the semicolon code which works fine now after adding the semicolon.Example:
;(function ($) {
$.extend($.jqx._jqxGrid.prototype, {
exportdata: function (datatype, filename, exportHeader, rows, exportHiddenColumns, exportServer, charset) {
if (!$.jqx.dataAdapter.ArrayExporter) {
throw ‘jqxGrid: Missing reference to jqxdata.export.js!’;
}November 4, 2016 at 11:38 pm jqx-all.js runtime exception: Uncaught TypeError: (…) is not a function #88760Hi Moushumi,
The version you’re using is very old – from Oct, 2015. We suggest you using a newer version of jQWidgets.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.