Insert textbox in jquery flexgrid in selected row at same specific column
I want to insert textbox in flexgrid row at specific column when i click on row. I want to edit the value of that column only when i select that column and that o开发者_如何学运维nly column must be editable not all. This is the only forum where i got my ans for flexgrid and jquery as i am new to this. please guide me for this.
From what I can tell with firebug, flexigrids table is just a regular table.
$(".flextablename > tr").click(function () {
$(this).$(":nth-child(2)").text("you clicked on this row");
});
will change the text of the second column on the row that you clicked on. This might give you some help along the way.
精彩评论