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>
如何在一行中創建第一個tr動態和第二個動態? –
你想要你的'
是的,我想我的'
相關問題