我已经尝试使用jQuery和许多其他方法。
首先,我调用一个函数:
ClientSideEvents RowClick="function(s, e) { OnGridFocusedRowChanged(); }"
这有助于我使用我用来重定向到另一个ASPX的例程。
(我玩游戏后面使用代码,但在使用jQuery和ASP.net Gridview之前我做过类似的事情。)
function OnGridFocusedRowChanged() {
cell = document.getElementById('<%=ASPxGridView1.ClientID%>')
alert(cell); ????
ViewName = aspxcboDashboard_IN.GetText();
window.location.href = "Drills.aspx?ViewName=" + ViewName + "&ViewRow=test" + "&ViewCol=test";
}
答案 0 :(得分:0)
我不确定您的代码的哪一部分失败,但如果您无法获取网格,请使用ClientInstanceName属性。
例如。将ClientInstanceName设置为grid1并将网格提取为任何其他全局变量:window.grid1
,window["grid1"]
或仅grid1
。