Use AnySearch to filter your grid

3
Hello, I try to use AnySearch to search my Grid, but it's not clear for me how the XPath parameter should be filled. The AnySearch widget is placed in a DataView delivering a ArticleSearch entity. This ArticleSearch contains a SearchValue and a XPath attribute. The XPath contains “[contains(Description, $ArticleSearch/SearchValue)]” but this gives an error. When I change the bold part into a string it works. Does somebody know how to implement the SearchValue parameter into the XPath string? What's the name of it and how to describe it in the XPath string representation? Thanks in advance!  
asked
1 answers
0

Hey Kees, 

Try this instead:

[contains(Description, '''+$ArticleSearch/SearchValue+''')]

 

 

answered