Reputation: 12179
Is it possible to add rows with web controls to a GridView
using jquery?
Upvotes: 0
Views: 725
Reputation: 28741
Yes , gridview is rendered as table so you can insert new row
$('#<%=yourGridView.ClientID%>').append('<tr><td></td><td></td></tr>');
Upvotes: 1