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.
DataGrid 内のデータが再充電またはレンダリングされるときに発生するイベントは何ですか?
たとえば、フィルタリングされた検索の結果を示す DataGrid です。異なるフィルターで [検索] ボタンをクリックするたびに、DataGrid の結果 (行数) が異なります。
あなたは何をしようとしているのですか?次のように、各列にレンダラーを追加できます。
{ text: 'ChangedCaption', dataIndex: 'myBoolean', renderer: function (value, metaData, record, rowIndex, colIndex, store) { if (value == true) { return 'Y' } else { return 'N' } } },