Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
bhargav_bhat
Creator II
Creator II

Reload application based on filters selected by users dynamically

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

1 Reply
Anil_Babu_Samineni
MVP
MVP

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>

 

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful