Jqwidgets causing troubles when offline

When the phone is offline my app crashes.
I found that the problem is on the definition of the these lines, needing external resources.

< link href=“https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css” rel=“stylesheet”>
< link href=“https://jqwidgets.com/public/jqwidgets/styles/jqx.ui-start.css” rel=“stylesheet”>
< script src=“https://jqwidgets.com/public/jqwidgets/jqxcore.js”>
< script src=“https://jqwidgets.com/public/jqwidgets/jqxbuttons.js”>
< script src=“https://jqwidgets.com/public/jqwidgets/jqxscrollbar.js”>
< script src=“https://jqwidgets.com/public/jqwidgets/jqxlistbox.js”>
< script src=“https://jqwidgets.com/public/jqwidgets/jqxcheckbox.js”>

If i put all the jqwidgets files (jqx.base.css , jqx.ui-start.css, jqxcore.js … etc) into the folder of resources of my app, everything works well also when off line. But, to do this, i have to modify the paths “manually” like this:

< link href=“myfolder/jqx.base.css” rel=“stylesheet”>
< link href=“myfolder/jqx.ui-start.css” rel=“stylesheet”>
< script src=“myfolder/jqxcore.js”>
< script src=“myfolder/jqxbuttons.js”>
< script src=“myfolder/jqxscrollbar.js”>
< script src=“myfolder/jqxlistbox.js”>
< script src=“myfolder/jqxcheckbox.js”>

My question is:
is there a way to do it automatically, so that starting the building process the paths don’t need manual editing to be changed to the path of my resources folder?
Otherwise I must renounce to use jqwidgets.

I found that in the properties there is jqWidgetPath … i will play with this while waiting for some tips

yes it works

Can you confirm that you are making a reference to using the jqWidgets in a native phone app with rendering successful?