Hello,
To perform grid filtering on the server I need to pass the type of each field back as a parameter. Is there an automatic way to do that?
I found this old post:
it describes doing it like this:
data: {
table: grid,
fieldscount: datafields.length,
fields: datafields
},
when I try that in my source I get undefined on datafields, by doing a this.datafields the error goes away but no additional parameter are passed back to the server.
I could possibly list the columns and types again in the data property and they parse the additional parameters on the server to determine the data type of each column but I’m wondering if there is a setting that will automatically include the data type in the filter parameters that are passed.
Thanks