Header Loading is not Showing on any action, #1421
Unanswered
shakeel2717
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hello. This is a behavior caused by withoutLoading. If you take it off, does it work? Open an issue with details |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
IN recent version, whenever i use editOnClick or action button, the header show loading icon, but in current version, the loading bar is not showing, everything working fine, but on action click, no loading showing, it's looks like the button is not clicked, and with this confusions, users clicking button too many time,
i also read the docs
also try with this way
return [
Exportable::make('export')
->striped()
->type(Exportable::TYPE_XLS, Exportable::TYPE_CSV),
Header::make()->showSearchInput(),
Footer::make()
->showPerPage()
->showRecordCount(),
];
and also with this way
return [
Exportable::make('export')
->striped()
->type(Exportable::TYPE_XLS, Exportable::TYPE_CSV),
Header::make()->showSearchInput()->withoutLoading(),
Footer::make()
->showPerPage()
->showRecordCount(),
];
Beta Was this translation helpful? Give feedback.
All reactions