Laravel-AdminLTE
Laravel-AdminLTE copied to clipboard
[FEATURE] IFrame Mode Transitions
Would I be able to avoid this type of transition?
This spoils the entire user experience.
Thanks for your attention.
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...
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.
We can't do anything about this here, the issue is related to the underlying AdminLTE package