Hi Dojo,
In my Low Code App I'm using a "Query Filter" component which is filled from a GQI Query.
This gives me a long list of States we can select with a checkbox. By default the checkboxes are 'unchecked'. Would there be an option I'm missing which would allow us to have these checkboxes 'Checked' by default?
Kind regards,
Hi Stacy,
This is not configurable via a setting in the app, but you can use the URL data of a LCA to preselect items in the list.
An example URL selecting 'Undefined' & 'Active':
https://DMAIP/APP_ID/PAGE_NAME?data={
"version": 1,
"components": [
{
"cid": COMPONENT_ID,
"select": {
"query columns": [
"v:1|f:3|QUERY_ID\u001eCOLUMN_ID\u001elist\u001eUndefined\u001fActive"
] }
}
],
"feedAndSelect": {}
}
As you can see, this is quite complicated to set up, but also very flexible.