Laravel-AdminLTE icon indicating copy to clipboard operation
Laravel-AdminLTE copied to clipboard

[FEATURE] IFrame Mode Transitions

Open guidobri opened this issue 3 years ago • 2 comments

Would I be able to avoid this type of transition?

This spoils the entire user experience.

ezgif-6-c8f0da7954b6

Thanks for your attention.

guidobri avatar Oct 01 '21 17:10 guidobri

Hi @guidobri Unfortunately, we can't tune this behaviour here, it is part of the underlying AdminLTE package, you may try incrementing the loading_screen option from 1000 to 2000 or more on the configuration file.

    'options' => [
            'loading_screen' => 1000 /* <= THIS ONE */,
            'auto_show_new_tab' => true,
            'use_navbar_items' => true,
        ],

Maybe future versions of the AdminLTE package give us better experience on this feature...

dfsmania avatar Oct 01 '21 19:10 dfsmania

The problem is simple, when you call

@extends('adminlte::page', ['iFrameEnabled' => true])

the loading tab is not being load, and the sencond problem is when you add it then you attach the menu code again, the solution for me is to separe the menu from the styles call, so you can call

@extends('adminlte::page', ['iFrameEnabled' => true])

just in the very first page and then another section to attach just the styles.

Guille47 avatar Oct 04 '21 21:10 Guille47

We can't do anything about this here, the issue is related to the underlying AdminLTE package

dfsmania avatar Mar 23 '24 16:03 dfsmania