I have html table in partial view.
I want to add more table data to table row. Need to mention I have created only one table row having all table data inside horizontally.
I need to add more table data after button click event. But my last table data is Total
, so i need to add table data before Total
column. It is html mark up so I don't have way to show that.
My table is like that.
<table>
<tr><td>1</td><td>2</td><td>3</td><td>4</td><td>Total</td></tr>
</table>
I want to add new column before Total
column, like that.
<table>
<tr><td>1</td><td>2</td><td>3</td><td>4</td><td>Add New Column</td><td>Total</td></tr>
</table>