layout option, show multiple items next to each other.
layout option, show multiple items next to each other.
ooioo
Posts: 23Questions: 4Answers: 0
Hello,
I was using the option with datatables 1 :
dom: 'Blftip'
I am trying :
layout: {
topStart: ['buttons', 'pageLength', 'search'],
topEnd: null,
bottomStart: ['info', 'paging'],
bottomEnd: null
},
but the items 'buttons', 'pageLength', 'search' are displayed on one new line each and not on the same line.
Pierre
Answers
Hi Pierre,
Each "feature" is a
div
inside a container, so they are, by default in the browser,display: block
. You can modify that will a little CSS - e.g.:Here is that with your
layout
object: https://live.datatables.net/zewetoki/1/edit .Allan
Thanks Allan for this help, but I'm using Bootstrap, and I do have a div with a class dt-container but no dt-layout-cell.dt-start class.
I have a test case here :
http://wikipanda.free.fr/datatables/dt2layout/
It includes datatables 2, jquery 3.7.1 and Bootstrap 5.3.3.
Pierre.
Thank you for the link. You just need to tweak the selector a little and add
flex: 1
:Allan
Yes it works, but not on a small screen.
The test case has now the above css :
http://wikipanda.free.fr/datatables/dt2layout/
If you shrink your browser you'll see !
Okay, well you need to add a responsive CSS rule to make it
display: block
when the browser width is whatever width you want when want it to collapse.See this section in MDN on how to do that.
Hi,
thanks for the link Allan, mdn is great.
To replace datatables dom option for the Buttons with Bootstrap 5, I have created a div and added it to the div containing datatables 'pageLength' and 'search'.
Can be enhanced of course but it works. When I click on the pdf Button, the pdf is ok but there is an error :
and the PDF button is replaced with a waiting animation.
Test case here :
http://wikipanda.free.fr/datatables/dt2layoutappend/
Bye.
Pierre.
Hi,
i also want multiple items next to each other. I use bootstrap 5. Is it possible to add classNames to this divs? I see the renderer have a option for id/className. But I don't find a solution to add it.
https://github.com/DataTables/DataTablesSrc/blame/dfef3dfcd36bbb30e858b1361fb6a5c1fd64e3db/js/integration/dataTables.bootstrap5.js#L201
How can I add this className/id? Can you provide a example?
For a specific item? Currently no, that isn't possible. What code are you currently using?
Allan
Currently I use following dom and want it to migrate to layout:
Maybe we can support following settings in the future?
Or is it possible to create the info/paging in a custom layout function? So I can create the divs myself?
For that, would you use:
Or, since most of that is the default, use simply:
Allan
Hi Allan,
no this is not the same. bottom is over bottomStart/bottomEnd.
Before:
After:
Sebastian
Oh I see - use:
And the CSS (assuming it is BS5):
https://live.datatables.net/wekurica/1/edit
That said, I agree - I think it should be possible to add classes to the layout grid from the
layout
object. That will go into DataTables 2.1.Allan
Hi Allan,
okay thank you.
Sebastian
Second this feature.
I am really surprised layout is row-only (aside from Start/End).
Ideally, layout would be
(top|bottom)[0-9][0-9]?
where the second number is simply the column.It is a good idea and I'll keep it in mind for the future.
2.1 will see the array based columns added as discussed above.
Allan
@allan I ran across this issue as well, and solved it similar to your method, but it definitely felt like a hack. At least with bootstrap5 I recommend not only allowing users to set classes (as mentioned above), but actually adding one or more classes (like dt-center) to the parent so you can more easily modify the direct container (.col-md in this case.
The layout "top" and "bottom" without a start/end centers the entire div content by default (justify-content-md-center), where as the start/end use justify-content-between. Perhaps also think if that is an intended inconsistency by default.
This also works if you are only applying it to some of your datatables.
https://live.datatables.net/wekurica/16/
using the same starting point. I applied the bs5 classes on draw. Just looked for the element I was adding (alphabet, or dt-info, etc) and applied to parent. With adjustments to padding and margins on other elements. (ps. why does one pad the top and the other the bottom???)
you can add these classes on draw.
I didnt need the full alphabet search in mine but wanted to combine the dropdown page and the info. So I did this for anyone wanting the same.
Added to my table.
And on draw.