2017-02-16 64 views
0

我有表和行我添加數據href,但我已經爲每一行下拉,併爲此來回不需要鏈接,如何做到這一點?Html表格,它如何在一行中兩個tr?

在這個變體

我的下拉不起作用,因爲點擊的時候他打電話數據的href在這個變體做工精細

 <tr class="clickable" data-href="{{ path('outbound_invoices_show', {'id': outboundInvoice.id}) }}"> 
      <td> 
       {{ outboundInvoice.invoiceNumber }} 
      </td> 
      <td> 
       my drop down with link 
      </td> 
     </tr> 

,但有兩排

  <tr class="clickable" data-href="{{ path('outbound_invoices_show', {'id': outboundInvoice.id}) }}"> 
      <td> 
       {{ outboundInvoice.invoiceNumber }} 
      </td> 
     </tr> 

     <tr> 
      <td> 
       my drop down with link 
      </td> 
     </tr> 

enter image description here

回答

0
table{width: 100%} tr{display: inline} 

應該工作。否則,請顯示你有什麼。您也可以使用ul作爲內聯列表,因爲我相信行不應默認爲內聯。

+0

如何在一行中創建第一個tr動態和第二個動態? –

+0

你想要你的''在一行嗎? –

+0

是的,我想我的''在一行 –

相關問題