04-06-2023, 07:27 PM (This post was last modified: 04-06-2023, 07:57 PM by Mikhael.)
(04-06-2023, 06:53 PM)davidbaxter Wrote: Running Delphi 11.3 and getting this message after installing 15.3.0:
Continuing by clicking OK and Ignore on subsequent messages, I can get Delphi to load and can compile my program. Happens 3 times each startup.
Hi David
You have to recompile the tms intraweb component.
I have to do it for each new version of intraweb.
Hi Alexandre,
Great !
But there is now a bug with TIWFileUploader component.
Very easy to reproduce, just test with your demo 'FileUploader'.
Just the upload with a Stream work.
I have always have an error message in the navigator.
(04-06-2023, 06:53 PM)davidbaxter Wrote: Running Delphi 11.3 and getting this message after installing 15.3.0:
Continuing by clicking OK and Ignore on subsequent messages, I can get Delphi to load and can compile my program. Happens 3 times each startup.
TMS packages need to be built from the sources. Then they will load as normal.
(04-05-2023, 10:09 AM)Comograma Wrote: Ok, great update. Thanks!!
Regarding "IW jQuery updated to version 3.6.4", I'm ok. I'm loading it like this:
gIWBSLibJQueryJs := 'https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js';, so, latest version, right??!!!!!!!
Regarding Boostrap Normal Theme, I'm loading like this:
gIWBSLibBootstrapCss := 'http://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css';
gIWBSLibBootstrapJs := 'http://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js';
Is this ok??!!!!!!!!!!!!!
Regarding Bootstrap select component, I'm loading like this:
PageContext.AddBodyScriptFile('https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/bootstrap-select.min.js');
PageContext.AddLinkFile('https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/css/bootstrap-select.min.css');
Is this update or is there a newer/better version??!!!!!!!!!!
About jquery.jqgrid.min.js, ui.jqgrid.min.css and jquery-ui.min.css, where can I get the latest version for this files??!!!!!!!
Thanks
When you say that you are loading like this, does it mean that you are loading it yourself with your own code in your forms or are you letting IWBootstrap code deal with it?
IWBootstrap code has been adjusted to use the same jQuery version as core IW is using now (3.6.4). It will work correctly with the new jQuery version
04-07-2023, 02:20 AM (This post was last modified: 04-07-2023, 02:20 AM by davidbaxter.)
(04-06-2023, 09:50 PM)Alexandre Machado Wrote:
(04-06-2023, 06:53 PM)davidbaxter Wrote: Running Delphi 11.3 and getting this message after installing 15.3.0:
Continuing by clicking OK and Ignore on subsequent messages, I can get Delphi to load and can compile my program. Happens 3 times each startup.
TMS packages need to be built from the sources. Then they will load as normal.
------------------
Thank you and Mikhael for the response. That was indeed the issue.
Whoever had issues with the 15.3.0 version, please update.
The new update allows users from 11.0, 11.1 or 11.2 to select a different fileset to be installed. This is an exceptional workaround to avoid the internal compiler errors of those compilers
04-11-2023, 11:45 AM (This post was last modified: 04-11-2023, 11:47 AM by Comograma.)
(04-06-2023, 09:54 PM)Alexandre Machado Wrote:
(04-05-2023, 10:09 AM)Comograma Wrote: Ok, great update. Thanks!!
Regarding "IW jQuery updated to version 3.6.4", I'm ok. I'm loading it like this:
gIWBSLibJQueryJs := 'https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js';, so, latest version, right??!!!!!!!
Regarding Boostrap Normal Theme, I'm loading like this:
gIWBSLibBootstrapCss := 'http://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css';
gIWBSLibBootstrapJs := 'http://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js';
Is this ok??!!!!!!!!!!!!!
Regarding Bootstrap select component, I'm loading like this:
PageContext.AddBodyScriptFile('https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/bootstrap-select.min.js');
PageContext.AddLinkFile('https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/css/bootstrap-select.min.css');
Is this update or is there a newer/better version??!!!!!!!!!!
About jquery.jqgrid.min.js, ui.jqgrid.min.css and jquery-ui.min.css, where can I get the latest version for this files??!!!!!!!
Thanks
When you say that you are loading like this, does it mean that you are loading it yourself with your own code in your forms or are you letting IWBootstrap code deal with it?
IWBootstrap code has been adjusted to use the same jQuery version as core IW is using now (3.6.4). It will work correctly with the new jQuery version
I'm loading it like I metioned, myself, with those public IWBS variables. Must I remove those loads?