hi all
i have a problem with radgrid , i hope you can help me to solve this problem,
i have event <ClientEvents OnRowClick="hdRowClick" />
when i use javascript . i wrote in page aspx
function hdRowClick(sender,args)
{ ...... }
and event occur , but i want to use RadAjaxManager to solve this event , i wrote a function in code behind (page aspx.cs)
protected void hdRowClick(object sender, Telerik.Web.UI.GridClientEvents args)
{
txt_hd_mhd.Text = "abc"; // this is my test for event
}
but event did not occur , i think i chose wrong class for args and event did not occur.
could you give me a solution for my problem . additional i want to take the datakey of the row i selected in client and bring it to code behind so that i can retrieve data from database.
thank you all.
i have a problem with radgrid , i hope you can help me to solve this problem,
i have event <ClientEvents OnRowClick="hdRowClick" />
when i use javascript . i wrote in page aspx
function hdRowClick(sender,args)
{ ...... }
and event occur , but i want to use RadAjaxManager to solve this event , i wrote a function in code behind (page aspx.cs)
protected void hdRowClick(object sender, Telerik.Web.UI.GridClientEvents args)
{
txt_hd_mhd.Text = "abc"; // this is my test for event
}
but event did not occur , i think i chose wrong class for args and event did not occur.
could you give me a solution for my problem . additional i want to take the datakey of the row i selected in client and bring it to code behind so that i can retrieve data from database.
thank you all.