在 ASP.NET 的网格视图或数据表中动态添加新行?
我使用数据表绑定网格视图。
我的任务是当用户单击网格视图中的“添加”按钮时,动态地将新行添加到网格视图中,它应该生成带有三个文本框的新行。
例如:当我单击第二行中的添加按钮时,应在第二行下方创建一个新行,其中包含三个文本框,用户可以在其中输入详细信息。
有人可以帮我解决这个问题吗?无论是在 jQuery/JavaScript 中还是在服务器端。
I am binding the grid view using data table.
My task is to add new rows to my grid view dynamically when the user clicks "ADD" button in grid view it should generate new row with three text boxes.
For example: When I click the add button in the second row, a new row should be created below the second row with three text box where the user can enter details.
Can anybody help me resolve this problem? Either in jQuery/JavaScript or on the server side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试此解决方案
您可以在后面的代码中
,这是下面的代码块:
在页面加载中,您必须调用此方法,
这是单击按钮时生成行的方法。以下是下面的代码块:
这是 setpreviousdata 方法...
用于添加新行的按钮单击事件
,请查看下图它将如何生成新行...
希望对您有所帮助……
you could try this solution
inside code behind
Here’s the code block below:
in page load you have to call this method
this is the method for generating the rows when clicking the Button. Here are the code blocks below:
this is setpreviousdata method...
button click event for adding new row
and pls take a look below image how it will generate new rows....
I hope it will helps you.....
您可以使用 fnOpen http://www.datatables.net/ref#fnOpen。它可以让您在指定的行的正下方添加一行。您也可以为该新行提供您想要的 html。
You can use fnOpen http://www.datatables.net/ref#fnOpen. It will let you add a row directly below the row you give it. you can give that new row the html you want it to have as well.