Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
We have a requirement where the users have to select the filters based on which the QlikSense application gets reloaded in the backend for each user differently
Regards,
Bhargav
I would go with Widget of Filter like this using JS and Angular script? Perhaps this way?
<div Id="selectable" ng-class="{'selected':row.dimensions[5].selected}" qva-activate="row.dimensions[5].select()">
<script type='text/javascript'>
function ReloadDiv()
{
document.getElementById("selectable").reload();
}
setTimeout(ReloadDiv, 30);
</script>