Twitter Bootstrap déroulant dans la ligne de la table <td>

Im essayant d'obtenir un drop down à apparaître dans une ligne de table, dans une colonne spécifique, mais il ne semble pas y avoir de travail.

Im en utilisant google chrome, mais je ne peux pas sembler obtenir que cela fonctionne, j'ai essayé de suivre de nombreux exmaples, mais aucune ne semble fonctionner.

<!DOCTYPE HTML>
<%@ page isELIgnored="false"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <script type="text/javascript" src="<%=request.getContextPath()%>/resources/js/bootstrap/bootstrap.js"></script>
      <link  type="text/css" href="<%=request.getContextPath()%>/resources/css/bootstrap/bootstrap.css">
   </head>
   <body style="overflow: hidden;">
      <div class="container" align="center">
         <h1 style="margin-top: 100px;">Admin Page</h1>
         <table class="table table-bordered">
            <thead>
               <tr>
                  <th>Id</th>
                  <th>Game</th>
                  <th>Bonus</th>
               </tr>
            </thead>
            <tbody>
               <tr>
                  <td>1</td>
                  <td>Treasure Island</td>
                  <td>
                     <div class="dropdown">
                        <a data-target="#" data-toggle="dropdown" class="dropdown-toggle" href="#">Dropdown menu here...
                        <b class="caret"></b>
                        </a>
                        <ul class="dropdown-menu">
                           <li><a href="/app/1">Item A</a></li>
                           <li><a href="/app/2">Item B</a></li>
                           <li><a href="/app/3">Item C</a></li>
                        </ul>
                     </div>
                  </td>
               </tr>
            </tbody>
         </table>
      </div>
   </body>
</html>     
Voir cet exemple bootply.com/73591

OriginalL'auteur user1555190 | 2013-08-12