I did get this to work but then I wanted to delete a column... and now I cannot recreate it (forgot how I got there)
I have a view/page called MyRequests.
There is a STRING column which is equal to a name.
I would like this page to display only items where submitter = Current User.
I've converted the view to xslt in Designer.
I've tried adding parameters for both LogonUser and AuthUser... both specifying the filter under filter criteria and/or xslt filtering...nothing is working.
I've tried:
Filter: Submitter Equals [LogonUser]
Filter: Submitter Equals [AuthUser]
Filter: Submitter Equals [Current User]
xslt filters
Code:
[@Submitter=$LogonUser]
Code:
[contains(@Submitter,$AuthUser)]
Code:
[contains(@Submitter,$LogonUser)]
What am I doing wrong?