Loading...

RE: How can qSelector as filter return all rows by default for qListView if no selection is made.

RE: How can qSelector as filter return all rows by default for qListView if no selection is made.

#7040
Anonymous
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

  1. Open ezEdit in qListView, navigate to Custom Display;
  2. n

  3. Write below script into Results Header:
  4. 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