In my grid, I am using filterable and the data is fetched asynchronously when the user clicks on the down arrow in the column header. I would like to pre-fetch that data as soon as the grid data is requested - so that the user will most likely not see the spinner while the user waits for data. Currently, the data is not requested until the user clicks on the down arrow.
The column configuration is as follows:
{ field:
"CompanyName"
, title:
"Company Name"
, width: 168, filterable: { multi:
true
, dataSource: { transport: { read: { url:
"/api/LoadGridDataUnique"
, data: { field:
"CompanyName"
}}}}} }