I update my laravel-backpack to latest version
The table is responvsive before
Now the table is not responsive and no button for display the modal information or each row
Already fix it by removing this line of code from datatables_logic.blade.php
initComplete: function () {
crud.responsiveToggle(
jQuery('#crudTable').DataTable()
);
}
My backpack version is 3.4.17, laravel 5.6, PHP ##7.1.13
What do you mean by "not responsive":
the table didnt behave differently on different screen size
I'm having a similar issue. After upgrading to the latest, I no longer get the three dots on the left side of each row. The action buttons are hidden outside the viewport. It doesn't appear that it actually in responsive mode anymore.
The problem is urgent, I have the same thing. On mobile screens, the table does not behave as stated
+1 for this issue - the three dots menu on the left isn't appearing in 3.4.17. I've downgraded to 3.4.16 and its fine once you execute artisan view:clear to clear the compiled views.
I think there's a bit of trouble here.
So there are a couple of problems.
Scenario 1
if you have 10 columns, 5 are on screen, 5 are off screen
You turn off the visibility of the first 5 - expecting to see the next 5.
They never appear.
If you trigger the responsive rebuild and recalculations, then they appear.
This fix enables the calculations by default to fix the issue before it happens
The Fix
The code you've provided is what fixes the above bug in Datatables.
Scenario 2
You want it to collapse like it used to
The Fix
In short... You cant really, the previous effect seems to be helped by the bug, HOWEVER, that's not to say there isn't an alternative solution.
Most frameworks offer features such as "responsive-table" classes such as Bootstrap, Foundation, UIKit etc.
This is no different - however, to get it to work you need to modify the datatables_logic.blade.php and make the following change
- "<'row'<'col-sm-12'tr>>" +
+ "<'row table-wrapper'<'table-inner'tr>>" +
This will give it the functionality of things like bootstrap and allow "responsive tables" - however this is NOT collapsable tables which it previously did.
Maybe its a bigger discussion to see if more changes can be made to fix.
@tabacitu if you can replicate then this might be a suitable fix https://github.com/Laravel-Backpack/CRUD/pull/1497 by making the table scrollable
Thanks a lot for reporting this @kevind11 , @swilla , @SuperDooker @tomgillespy . I've just pushed a hot fix.
composer update should fix it for you.
Sorry for pushing this into production - looks like this change was the culprit. I removed it for now and we'll find a different way of achieving the same thing.
@tabacitu but noooooooo you've now broken the column visibility lol, By removing that code there is a bug. By adding the new code you remove a bug but make a change to the UI
@OwenMelbz haha I know, uncomfortable solution for now. But I think it was the best way to go for a hotfix.
The way I see it:
Hence, the hotfix, until we find a solution for both. Can't change the UI that much (remove a functionality entirely) without calling it a breaking change. Otherwise, you know... pitchforks :-)
Just merged #1499 that properly fixes this. I'll be available with a composer update in a few hours/day, as 3.4.19
Cheers!
Is there a way to have a horizontal scroll bar instead of the 3 dots ?
šššš Give @tabacitu a couple of years and he'll realise the terrible mistake :P #antiPatternLife
:-)) @OwenMelbz thatās been know to happen, I know - you in particular have had to wait years for me to turn around, thank you for understanding :-)
In this particular case, though, I havenāt changed my mind _yet_ - I still think the three dots offer a better UX on mobile/tablet, than the scrollbar. So itās still the default. But we _do_ provide a way to toggle it off. Two ways, actually:
$this->crud->disableResponsiveTable(); for one CRUD panel;'responsive_table' => false, in the config/backpack/crud.php file for all CRUD panels;This will make the horizontal scrollbar appear - what Bootstrap and others call āresponsiveā, but I personally wouldnāt :-)
Iāve just realised this feature isnāt properly documented. @umbrellait-sergey-krivosheenko please check out the new docs for it here: https://backpackforlaravel.com/docs/3.4/crud-operation-list-entries#responsive-table - thank you for pointing this out.
Cheers!
Awesome! Thanks a lot!)
On Fri, Oct 26, 2018 at 10:37 AM Cristian Tabacitu notifications@github.com
wrote:
:-)) @OwenMelbz https://github.com/OwenMelbz thatās been know to
happen, I know - you in particular have had to wait years for me to turn
around, thank you for understanding :-)In this particular case, though, I havenāt changed my mind yet - I
still think the three dots offer a better UX on mobile/tablet, than the
scrollbar. So itās still the default. But we do provide a way to toggle
it off. Two ways, actually:
- $this->crud->disableResponsiveTable(); for one CRUD panel;
- 'responsive_table' => false, in the config/backpack/crud.php file
for all CRUD panels;This will make the horizontal scrollbar appear - what Bootstrap and others
call āresponsiveā, but I personally wouldnāt :-)Iāve just realised this feature isnāt properly documented.
@umbrellait-sergey-krivosheenko
https://github.com/umbrellait-sergey-krivosheenko please check out the
new docs for it here:
https://backpackforlaravel.com/docs/3.4/crud-operation-list-entries#responsive-table
- thank you for pointing this out.
Cheers!
ā
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/Laravel-Backpack/CRUD/issues/1489#issuecomment-433316431,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ApPHYDCz8-ImjkqOuMjrrhMY4jAD14Ckks5uoruygaJpZM4U-WLP
.
--
SERGEYKRIVOSHEENKO
WEB DEVELOPER
Horse rider
Tel: +7-952-569-69-87
Umbrella IT https://umbrellait.com/
Your successful web and mobile development partner.
FACEBOOK https://www.facebook.com/umbrellaitcom/ | *INSTAGRAM*
https://www.instagram.com/umbrellaitcom/* | *ABOUT US
https://umbrellait.com/
If you migrate from BP3 to BP4, move $this->crud->disableResponsiveTable(); from setup() to
setupListOperation()