在按钮中的GridView页脚中插入新行在运行时单击

时间:2015-06-12 20:33:57

标签: asp.net gridview

我只想在gridView Footer On按钮单击中插入一个新行,它位于gridview的一侧。每次用户单击“开”按钮时都会在“网格视图”页脚中插入新行,以便使用文本框输入数据。 GridView数据行显示数据库和页脚行中包含文本框的数据。用户可以通过单击按钮添加多个包含文本框的页脚行。 请帮我...  感谢...

1 个答案:

答案 0 :(得分:0)

我们遇到了类似的情况,但我们是在表的主体上动态添加行。没有理由采用类似的方法。请注意,如果需要将此数据提交回服务器,则需要实现一些其他功能。

下面是一些代码。

$('button').click(function () {
    var newRow = $('table tfoot').First('.Row').clone();  // If you need to insert dynamically you can create the elements in code
    $('table tfoot').append(newRow);    
});