gpt4 book ai didi

jquery - 在 jqgrid 中勾勒出选定的行而不是改变它的颜色

转载 作者:行者123 更新时间:2023-11-28 05:52:02 25 4
gpt4 key购买 nike

当选择了带有红色轮廓的行而不是仅仅更改颜色行时,我希望勾勒出我的 JGGrid。你能帮我实现这个目标吗?是否没有现有的 JQUERY UI 类来完成这项工作?

旧格式: Old format

需要的格式: The way i want selections to be

提前致谢。

最佳答案

代码如下:

你可以在 jqgrid 中覆盖这个方法:

onSelectRow:function(rowid){
//gets all rows and remove custom class
var $trs = $("#grid tbody tr").removeClass("custom-class");

//only set custom class to current row clicked
$trs.eq(rowid).addClass("custom-class");
}

工作 fiddle : http://jsfiddle.net/yNw3C/13655

关于jquery - 在 jqgrid 中勾勒出选定的行而不是改变它的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37276795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com