如何更改 gwt-ext 网格中选定行的颜色?
我想更改应用程序中所选网格行(gwt-ext grid)的颜色。
为此,我这样做了:
int rowIndex = getGrid().getStore().indexOf(rec);
Element currentRow = getGrid().getView().getRow(rowIndex);
currentRow.getStyle().setProperty("backgroundColor","red");
但它永久改变了行的颜色。当我在另一行上选择时,之前选择的行应该是以前的颜色。
所以我不知道如何更改 gwt-ext 网格中所选行的颜色。
我也想知道如何改变网格行的文字颜色?
I am want to change the color of selected row of grid (gwt-ext grid) in my application.
For this I have done this:
int rowIndex = getGrid().getStore().indexOf(rec);
Element currentRow = getGrid().getView().getRow(rowIndex);
currentRow.getStyle().setProperty("backgroundColor","red");
But it is permanently changing the color of the row.As I select on another row it previous selected row should be in it previous color.
So I am not getting what to do the change the color of selected row in the gwt-ext grid.
I also want to know how to change the text color of the grid row?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
addStyleName("myClass")
添加该类。addStyleName("myClass")
.