- This topic is empty.
- AuthorPosts
-
- 03/31/2015 at 4:21 am #7418
AnonymousParticipantHi there,
n
n
You can check “Turn Off Filtering When Empty Selection Is Chosen” check box in qSelector to turn of this feature.
n
n
- 03/31/2015 at 10:56 am #7033
AnonymousParticipantHi,
n
We are experiencing the same issue. Any advice would be very helpful.
n
Thanks,
n
Trav
- 04/01/2015 at 3:27 am #7037
AnonymousParticipantThat option was already turned on.
n
The CAML filter on the list is expecting a Session value. On the initial load of the page, nothing is there, no session, nothing. So nothing loads. Now, after selecting a different value and then selecting the empty value from the qSelector it works. It is just the initial load of the ASPX page that does not work.
n
Does the CAML filter on the list need to be set up differently?
n
Thanks,
n
Trav
-
04/01/2015 at 5:42 am #7040
AnonymousParticipantHi
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
- 04/02/2015 at 7:16 am #4324
AnonymousParticipantHi,
I have a qSelector as filter connected to qListview (Employee). qSelector has Department selections (IT, HR, Finance) that will filter the Employee qListView with selected Departments from filter. I have “Show Empty Selection” checked. So itshows empty selection with “-Select One-” as default for qSelector when page loads. I hope my scenerio is clear up to this point. My question is:
Why is the list initially returning ZERO rows when the -Select One- is selected? How can I change it so that by default, itwill return all rows until any one of the department is selected.
Thanks.
- 04/02/2015 at 7:16 am #7042
AnonymousParticipantAwesome, at least there is a work around for now.
n
Thanks ,
n
Trav
-
- AuthorPosts
You must be logged in to reply to this topic.