开发者

Insert textbox in jquery flexgrid in selected row at same specific column

开发者 https://www.devze.com 2023-01-21 20:18 出处:网络
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 ed

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消