You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue with generating filters for startsWith and substringof operators in PropertyFieldSPListQueryHost.
All fiters are generated in the form of Field operator 'value' whereas for startsWith it should be startswith(Field,'value') and for substringOf should be substringof('value',Field).
There is an issue with generating filters for startsWith and substringof operators in PropertyFieldSPListQueryHost.
All fiters are generated in the form of
Field operator 'value'
whereas for startsWith it should bestartswith(Field,'value')
and for substringOf should besubstringof('value',Field)
.Basically, this part of saveQuery:
should be changed to:
I'd be happy to fix this issue. Do you accept PRs?
The text was updated successfully, but these errors were encountered: