Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个网格面板,当网格为空时,它应该以红色突出显示网格(当其他组件上的验证失败时会发生这种情况)。有一个简单的解决方案吗?
在最基本的层面上,你可以添加这个 css:
.grid-highlight { border: 1px solid red !important; }
并在加载(或数据更改)事件时检查存储是否为空,然后执行以下任一操作:
iGrid.addCls( '.grid-highlight' ); iGrid.removeCls( '.grid-highlight' );