el_pup_le
el_pup_le

Reputation: 12179

Add rows to GridView without Postback

Is it possible to add rows with web controls to a GridView using jquery?

Upvotes: 0

Views: 725

Answers (1)

Mudassir Hasan
Mudassir Hasan

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

Related Questions