Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TIWjQDBGrid changing UI
#7
(07-25-2021, 06:02 AM)Alexandre Machado Wrote: Please try IW 15.2.33 (just released). We are now using the same files for both IWBootstrap and IWjQGrid, so there should be no conflicts.

Please let me know how it goes.


No, the same. After open a form with a TIWjQDBGrid component with UI property set to uiBootstrap, all the button will change their appearence.

If I even open a modal form with a TIWjQDBGrid and than close it, the parent form will change the button appearence, without doing nothing.


(07-25-2021, 12:00 AM)Alexandre Machado Wrote: I'll update the jQGrid CSS files to the same version as IWBootstrap 3 (3.4.1) used in IW and see if it fixes it.

Are you using local CSS files for your bootstrap application or any CDN?


No.

I'm loading bootstrap files from https://cdnjs.cloudflare.com

That's what I'm loading:

  // Carregamento das livrarias do Bootstrap
  gIWBSLibJQueryJs := 'https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js';

  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';

  gIWBSLibIWBSCss := 'https://cdn.rawgit.com/kattunga/IWBootstrapFramework/v2.0beta5/demo/bin/wwwroot/iwbs/iwbs.css';
  gIWBSLibIWBSJs := 'https://cdn.rawgit.com/kattunga/IWBootstrapFramework/v2.0beta5/demo/bin/wwwroot/iwbs/iwbs.js';

  gIWBSLibPolyFillerJs := 'https://cdnjs.cloudflare.com/ajax/libs/webshim/1.16.0/minified/polyfiller.js';

  gIWBSLibDynamicTabsCss := 'https://cdn.rawgit.com/kattunga/Bootstrap-Dynamic-Tabs/v2.1/bootstrap-dynamic-tabs.css';
  gIWBSLibDynamicTabsJs := 'https://cdn.rawgit.com/kattunga/Bootstrap-Dynamic-Tabs/v2.1/bootstrap-dynamic-tabs.js';

  gIWBSLibSummerNoteCss := 'https://cdn.rawgit.com/summernote/summernote/v0.8.2/dist/summernote.css';
  gIWBSLibSummerNoteJs := 'https://cdn.rawgit.com/summernote/summernote/v0.8.2/dist/summernote.js';

  IWBSAddGlobalLinkFile('https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.18/css/bootstrap-select.min.css');
  IWBSAddGlobalLinkFile('https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.18/js/bootstrap-select.min.js');  
  // FIM - Carregamento das livrarias do Bootstrap

Should I use any other locations?

UPDATE:
Change it like this:

  gIWBSLibJQueryJs := 'https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js';

  gIWBSLibBootstrapCss := 'https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css';
  gIWBSLibBootstrapJs := 'https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/js/bootstrap.min.js';

  gIWBSLibPolyFillerJs :=  'https://cdn.jsdelivr.net/npm/webshim@1.16.0/js-webshim/minified/polyfiller.min.js';

  gIWBSLibIWBSCss :=        'https://cdn.jsdelivr.net/gh/kattunga/IWBootstrapFramework@v2.0beta5/demo/bin/wwwroot/iwbs/iwbs.css';
  gIWBSLibIWBSJs :=        'https://cdn.jsdelivr.net/gh/kattunga/IWBootstrapFramework@v2.0beta5/demo/bin/wwwroot/iwbs/iwbs.js';

  gIWBSLibDynamicTabsCss := 'https://cdn.jsdelivr.net/npm/bootstrap-responsive-tabs@2.0.3/dist/css/bootstrap-responsive-tabs.css';
  gIWBSLibDynamicTabsJs :=  'https://cdn.jsdelivr.net/npm/bootstrap-responsive-tabs@2.0.3/dist/js/jquery.bootstrap-responsive-tabs.min.js';

  gIWBSLibSummerNoteCss :=  'https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.css';
  gIWBSLibSummerNoteJs :=  'https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.js';

  IWBSAddGlobalLinkFile('https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/css/bootstrap-select.min.css');
  IWBSAddGlobalLinkFile('https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/bootstrap-select.min.js');
Reply


Messages In This Thread
TIWjQDBGrid changing UI - by Comograma - 07-15-2021, 03:51 PM
RE: TIWjQDBGrid changing UI - by Comograma - 07-15-2021, 05:03 PM
RE: TIWjQDBGrid changing UI - by Comograma - 07-19-2021, 05:32 PM
RE: TIWjQDBGrid changing UI - by Comograma - 07-27-2021, 09:47 AM
RE: TIWjQDBGrid changing UI - by Comograma - 07-27-2021, 02:30 PM
RE: TIWjQDBGrid changing UI - by Comograma - 07-30-2021, 10:45 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-03-2021, 09:35 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-02-2021, 11:48 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-04-2021, 09:18 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-04-2021, 02:04 PM
RE: TIWjQDBGrid changing UI - by Comograma - 08-09-2021, 11:15 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-13-2021, 10:03 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-13-2021, 11:33 AM
RE: TIWjQDBGrid changing UI - by Comograma - 08-13-2021, 03:39 PM
RE: TIWjQDBGrid changing UI - by Comograma - 09-01-2021, 11:23 AM
RE: TIWjQDBGrid changing UI - by Comograma - 09-01-2021, 03:31 PM
RE: TIWjQDBGrid changing UI - by Comograma - 09-09-2021, 01:48 PM
RE: TIWjQDBGrid changing UI - by Comograma - 09-15-2021, 09:26 AM

Forum Jump:


Users browsing this thread: 3 Guest(s)