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' );