Loading ...

jquery

Who is online?  0 guests and 0 members
home  »  forums   »  codeasp.net community   »  open forum   » jquery

jquery

Posts under the topic: jquery

Posted: 2/27/2010

Lurker 20  points  Lurker
  • Joined on: 2/16/2010
  • Posts: 4

i hav to call this event in jquery on client side;
how? i dnt have an idea
this is the event
protected void gvPracticesAssignedFacilities_RowDataBound(object sender, GridViewRowEventArgs e)
{



if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "javascript:setMouseOverColor(this);";
e.Row.Attributes["onmouseout"] = "javascript:setMouseOutColor(this);";
e.Row.Attributes.Add("onclick", "javascript:rowindexgv2(this)");


}
//int i = Convert.ToInt32(hdnfldSelectedRow.Value) + 1;


}
plz tell me how this function is call in jquery
i cant take document.ready in this

 i'm doing this in javascript using asp.net


Posted: 3/6/2010

Guru 16813  points  Guru
  • Joined on: 4/19/2009
  • Posts: 490

Please put some more light on your question .


Posted: 5/3/2010

Professional 8505  points  Professional
  • Joined on: 5/3/2010
  • Posts: 391

Some more explanation of your scenario and the goal you want to achive may help us provide you better answers ;)

Regards,
Hajan


Posted: 9/30/2010

Professional 8338  points  Professional
  • Joined on: 4/15/2009
  • Posts: 424
  Answered

Hello,

I'm not sure if this would work on GridView events but just try to give it a shot: http://www.codeproject.com/KB/scripting/JavaScriptAndServerEvents.aspx


Page 1 of 1 (4 items)