I'm using
autoProcessData=true
in Grid, and I want to access the processed data after filters are applied. For example, if I start with 50 items and a filter reduces it to 10, how can I access those 10 filtered items? Is there a callback or method to get the processed data after filtering? <Grid
data={addressList}
dataItemKey={DATA_ITEM_KEY}
className="k-grid-no-scrollbar border-none bg-transparent"
autoProcessData={true}
defaultSkip={0}
defaultTake={10}
pageable={{
buttonCount: DEFAULT_TABLE_BUTTON_COUNT,
pageSizes: DEFAULT_TABLE_PAGE_SIZES,
}}
sortable={{
allowUnsort: true,
mode: 'multiple',
}}
>