@PrewinThomas @tej57 I have tried implementing the same, but for each redirection , the dashboard loads only the default value mentioned on the redirecting dashboard : My redirecting dashboard ...
See more...
@PrewinThomas @tej57 I have tried implementing the same, but for each redirection , the dashboard loads only the default value mentioned on the redirecting dashboard : My redirecting dashboard link : https://host:8000/en-US/app/app_name/dashboard_name?form.time.earliest=2025-03-01T00:00:00.000&form.time.latest=now I have also tried it by removing the default value , {
"type": "input.timerange",
"options": {
"token": "passed_time"
},
"title": "Global Time Range"
} on this scenario i observed , my token is not being passed. and panels are showing waiting for input . i validated it by capturing the tokens on the "ADD TEXT " field. the token passes its value, but my panel remained the same showing waiting for input. I have also tried , with different default value for the input , still the same. "inputs": { "input_global_trp": { "type": "input.timerange", "options": { "token": "passed_time", "defaultValue": "$passed_time.latest$,$passed_time.earliest$" }, "title": "Global Time Range" } }, I have also remove the whole input , and only captured the token at : "defaults": { "dataSources": { "ds.search": { "options": { "queryParameters": { "latest": "$passed_time.latest$", "earliest": "$passed_time.earliest$" } } } } Just so puzzled, why my token values are not passed to the source , but fine on the text box. kindly advice