You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @AllenFang,
I'm trying to create my own footer for react-bootstrap-table. I see that the <thead> and <tbody> are created in two different table and have already gone through #738 .
I'm stuck at a place where I need to scroll the footer according to the <thead> and <tbody>. Can you please help me and point me in your code where this is done?
Note: I've tried implementing #554 and #1190 but none of them scroll along.
Thanks again.
The text was updated successfully, but these errors were encountered:
prajapati-parth
changed the title
[Footer] Help need to fix scrolling
[Footer] Help need to fix scrolling of footer
Jul 20, 2017
@prajapati-parth, I think it's hard to implement it now in the react-bootstrap-table, particular you need to fix the footer.
I think if you want to fix the footer in the end, check the html structure of react-bootstrap-table
you will see it is construct by two div, most like:
<div><div><table><thead>...</thead></table></div><!-- HEADER --><div><table><tbody>...</tbody></table></div><!-- BODY --></div>
you can add another div in here and make the html like
<div><div><table><thead>...</thead></table></div><!-- HEADER --><div><table><tbody>...</tbody></table></div><!-- BODY --><div><table><tfooter>...</tfooter></table></div><!-- FOOTER --></div>
Let me know if you have any consideration or questions.
Hi @AllenFang,
I'm trying to create my own footer for react-bootstrap-table. I see that the
<thead>
and<tbody>
are created in two different table and have already gone through #738 .I'm stuck at a place where I need to scroll the footer according to the
<thead>
and<tbody>
. Can you please help me and point me in your code where this is done?Note: I've tried implementing #554 and #1190 but none of them scroll along.
Thanks again.
The text was updated successfully, but these errors were encountered: