Findind value of a textbox inside a datagrid in JavaScript
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
Hi. I am using VS2003. I hava a DataGrid and inside one Templete Column, I have a TextBox. How to get the value of that textbox(which is inside the DataGrid) in Javascript. Regards,
-
Hi. I am using VS2003. I hava a DataGrid and inside one Templete Column, I have a TextBox. How to get the value of that textbox(which is inside the DataGrid) in Javascript. Regards,
function getTextValue(control) { for (i = 0 ; i-1) { //get the value of textbox document.frmName.elements[i].text; } } } I hope this will help u out .......
-
Hi. I am using VS2003. I hava a DataGrid and inside one Templete Column, I have a TextBox. How to get the value of that textbox(which is inside the DataGrid) in Javascript. Regards,