Dev Express GridView:我想获取单击单元格的行和列 - 或行和列的标题

时间:2012-08-25 15:54:22

标签: jquery gridview devexpress

我已经尝试使用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"; 
     } 

1 个答案:

答案 0 :(得分:0)

我不确定您的代码的哪一部分失败,但如果您无法获取网格,请使用ClientInstanceName属性。
例如。将ClientInstanceName设置为grid1并将网格提取为任何其他全局变量:window.grid1window["grid1"]或仅grid1