1怎样将grid 的checkedbox 勾选状态都清除
inv.getSelectionModel().clearSelections();
inv.getView().refresh();
2怎样取得grid列的第几行数据
inv.getStore().getAt(i).data;// i为行号
3怎样通过数据值来改变grid行的颜色
其中需要填加viewConfig(在这里我是通过sumAmount大小来改变颜色)
写上对应的style
<style type="text/css">
.my_row_Red {
background: Red;
}
</style>
4怎样修改列的显示数据
5在grid中设置某一行的checkedBox为true(即勾选状态)
inv.getSelectionModel().select(num, true);
我很好奇为什么有时候把true 改为false也是一样的效果,不知道为撒,在api里面也没有详细讲述这个问题
大概一看就知道是怎么用吧
博客写的很少,所以界面好丑。
时间: 2024-11-09 01:01:14