本文介绍了Javascript获取DataGridview特定行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我在asp.net的gridview中有数据绑定..当我单击编辑"按钮...我需要将特定的行值分配给文本框....使用javascript ... plz helpme

Hi
hi i had databind in gridview in asp.net .. when i click edit button... i need particular row value assign to textbox.... use javascript... plz helpme

推荐答案


TextBox txtInvDate = (TextBox)e.Row.FindControl("txtInvDate");
txtInvDate.Attributes.Add("onclick", "javascript:testJS('" + txtInvDate.ClientID + "');");



编写JS函数(示例)



Write JS function(example)

function testJS(txtID)
{
var rowCount = document.getElementById('<%=grdCC.ClientID %>').rows.length;
            var grdElement = document.getElementById('<%=grdCC.ClientID %>')
for (var i = 1; i < rowCount; i++) {
  // Find here grid view controls. and write code on them.
}
}


这篇关于Javascript获取DataGridview特定行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 17:15