Thingworx 9.3 Grid Config - Filter and Reset Button Location
Anyone know if 9.3 grid JSON configuration has the ability to set the location of the filter and reset buttons?
The old advanced grids allowed for this by using the below JSON string parameters:
"search": {
"multiColumn": {
"enabled": true,
"location": "bottom-right"
}
},
"resetButton": {
"enabled": true,
"location": "bottom-right"
}
However the 9.3 grid configuration documentation does not show the ability to set location. I've tried something like this but now luck. Anyone have a way to set the location of these two features?
"resetButton": {
"location": "bottom-right",
"enabled": true
},
"filter": {
"show": true,
"location": "bottom-left"
},
(Note: I have found the documentation to be either inaccurate or non-exhaustive. Wondering if there is something missing in the documentation or if this functionality was disabled.)

