04/01/2015 at 5:42 am #7040
Anonymous
Participant
Hi
n
n
Sorry, this is a bug in qSelector, I was assuming that you are connecting then with web part connection. I have created a bug for the team, the ID is #443821.
n
n
I would like to provide below solution as a workaround:
n
- n
- Open ezEdit in qListView, navigate to Custom Display;
- Write below script into Results Header:
n
n
n
<script>
n
var url = window.location;
n
if(url.toString().indexOf('refresh') == -1)
n
{
n
if(url.toString().indexOf('?') == -1)
n
{
n
window.location.href = url+'?refresh=1';
n
}
n
else{
n
window.location.href = url+'&refresh=1';
n
}
n
}
n
</script>
n
n
The script will refresh the page if the page is loaded in the first time.
n
n