grid.getStore().addListener('load', handleGridLoadEvent);

    function handleGridLoadEvent(store, records) {
        var gridCount = 0;
        store.each(function (r) {
            if (r.get('disorderlyStatusStr') == "回溯点亮") {
                var length = disorderly.getView().getRow(gridCount).cells.length;
                for (var i = 0; i < length; i++) {
                    disorderly.getView().getRow(gridCount).cells[i].style.color = 'red';
                }
            }
            gridCount = gridCount + 1;
        });
    }

 

相关文章:

  • 2021-12-26
  • 2021-07-20
  • 2022-03-01
  • 2022-12-23
  • 2021-10-14
  • 2021-08-12
  • 2022-03-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案