Getting value of a column on click of a row in jqGrid

前端 未结 4 961
不思量自难忘°
不思量自难忘° 2021-01-15 01:02

I am using Asp.Net/C# , in one of my page I am using jqGrid to display list of users to the Admin , The jqGrid contains f

4条回答
  •  伪装坚强ぢ
    2021-01-15 01:16

    Finally to get what I required I got a lot of help from Example , so the solution was on Rowselecting event of the jqGrid , I used jqGrid.SelectedRow to get the value of my cell.

    Example:

    protected void ModifyAccountUserDetailsjqGrid_RowSelecting(object sender, Trirand.Web.UI.WebControls.JQGridRowSelectEventArgs e)
            {
                ModifyAccountUserDetailsjqGrid.SelectedRow;   
            }
    

    P.S Oleg thanks a lot for your generous help.Much appreciated.

提交回复
热议问题