Is there an explanation of what the “query” parameter used for in your “Autocomplete strict mode (Ajax)” example at the link below is used for? How or why would I use this?
Code snippet:
columns: [
{
type: 'autocomplete',
// how and why is the below 'query' parameter used?
source(query, process) {
fetch('https://handsontable.com/docs/scripts/json/autocomplete.json')
.then(response => response.json())
.then(response => process(response.data));
},
strict: true
},
Link:
Autocomplete cell type - JavaScript Data Grid | Handsontable