Hello
I cannot seem to get the parameters to work with Filters in Sharepoint.
I am on Sharepoint 365 (microsoftsharepointteamservices: 16.0.0.20802) - the site I am working on was created in Sharepoint2013
What I am trying to do is display a list of links in my pages, where links are filtered from a master links based on a context criteria which is part of the page attributes named "Area"
Links have a "FilterArea" text column, and I need to display all links which "contain" the value defined in the page field.
I created a view for my Links list and added a parameter "ParamArea" in Sharepoint Designer 2013 as follows :
<ParameterBinding Name="ParamArea" Location="QueryString(FilterArea)" DefaultValue=""/>
Then inside Query:
<Where>
<Contains>
<FieldRef Name="FilterArea"/>
<Value Type="Text">{ParamArea}</Value>
</Contains>
</Where>
In my page, I create a Page Field Filter Web part with the corresponding page attribute, then added a web part for the "Links" list and selected the above view
When creating the connection in the links web part , I use "get parameters from" and I get the following message "the consumer web part did not provide schema information" - even though the parameter does exist in the view.
Same issue with a simple Text Filter.
Would you have any idea what is going on or what I am doing wrong ?
Thanks in advance