Comment afficher la table Bootstrap avec l'icône de tri

je Suis nouveau sur Bootstrap, j'ai une exigence pour afficher un tableau avec tri en haut et en bas flèche à côté du titre de la table. C'est ma structure de la table

<table class="table table-bordered table-striped">
        <thead>
        <tr>
            <th><b>#</b>  <i class='icon-arrow-up'></i><i class='icon-arrow-down'></th> **// tried** 
            <th ><b>Name</b></th>
            <th><b>Email</b></th>
            <th><b>Team</b></th>
            <th ><b>Role</b></th>
            <th ><b>Timezone</b></th>
            <th><b>Connections</b></th>
            <th><b># Posts available</b></th>
            <th><b>Last Login</b></th>
            <th><b>Posts</b></th>
        </tr>
        </thead>
        <tbody>
        </tbody>
    </table>

je veux afficher des flèches de tri Haut/Bas similaires à l'image suivante. enter image description here

Merci de m'aider à résoudre ce problème. Votre aide est très appréciée. Remercier.

25
demandé sur Dibish 2014-08-05 08:41:43

3 réponses

Vous pouvez essayer d'utiliser FontAwesome. Il contient une icône de tri (http://fontawesome.io/icon/sort/).

Pour ce faire, vous

  1. besoin d'inclure fontawesome:

    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
    
  2. et puis utilisez simplement l'icône fontawesome au lieu des icônes par défaut-bootstrap dans votre ths:

    <th><b>#</b> <i class="fa fa-fw fa-sort"></i></th>
    

j'Espère que vous aide.

49
répondu nozzleman 2014-08-05 09:08:39

Utilisez ces icônes avec bootstrap (glyphicon):

<span class="glyphicon glyphicon-triangle-bottom"></span>
<span class="glyphicon glyphicon-triangle-top"></span>

http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_glyph_triangle-bottom&stacked=h

http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_glyph_triangle-bottom&stacked=h

14
répondu Dudi 2016-09-19 06:56:43

si vous n'avez besoin que de flèches Haut/Bas, vous avez la solution. Si vous souhaitez travailler, vous pouvez utiliser ce BOOTSTRAP TABLE

2
répondu Tudor 2017-03-29 14:33:26