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

问题描述

var grid = document.getelementbyid('Gridname');





var text = grid.rows [1] .cells [1] .innerHTML;





这里代替Cells [1]我想使用像cell ['txt_Orderno']这样的东西;





in cell [1]我正在使用模板字段文本框;



该文本框的id是txt_Orderno。



所以我的问题不是使用单元格索引而是要使用绑定字段或模板字段id的列名。如何实现这一点???

var grid=document.getelementbyid('Gridname');


var text=grid.rows[1].cells[1].innerHTML;


Here instead of Cells[1] i want to use something like cells['txt_Orderno'];


in cell[1] i am using template field textbox;

the id of that textbox is txt_Orderno.

So my problem is instead of using index of cell i want use column name of bound filed or template filed id. How to achieve this???

推荐答案



这篇关于如何获取Access Gridview行列名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 18:56