how to change the name dynamicaly usign jquery grid
- by kumar
hello friends, I am using jquery grid
I have jquery grid with user data..First Coulum is ID..
here is the code
$("#table").click(function(e) {
var row = jQuery(e.target).parent();
Name = row.attr("id");
Friends(Name);
});
Now when i click on the row I am getting Id value.. i am passing this id value to one funcation to dispaly name..
I can able to dispaly the name only frist Id..
its not changing each and every row click?
Can any body help me out
thanks