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
{{ message }}
This repository was archived by the owner on Sep 6, 2018. It is now read-only.
I tried the elm-sortable-table with Twitter Bootstrap, but my table header was not displaying well. So I have found that the <th> elements were not wrapped into <tr> before being wrapped themselves by a <thead>
So I looked at the MDN Docs and it says for <thead> that:
Permitted content: Zero or more <tr> elements.
I think that if we want the elm-sortable-table to play well with all the css frameworks, wrapping the <th> with a <tr>would be a must.
I tried the
elm-sortable-tablewith Twitter Bootstrap, but my table header was not displaying well. So I have found that the<th>elements were not wrapped into<tr>before being wrapped themselves by a<thead>So I looked at the MDN Docs and it says for
<thead>that:I think that if we want the elm-sortable-table to play well with all the css frameworks, wrapping the
<th>with a<tr>would be a must.eg using this
instead of
Thanks