I'm using a CQWP(Content query web part) that fetch a calendar list and I want to filter my result (customqueryoverride - usign CAML). However, some fields from the calendar list are hidden to me.
I want to know all fields in my calendar list.
The solution I came up with was to use an identity transform XSL to display all my properties and their values and adding all fields to the CommonViewFields property.
<property name="CommonViewFields" type="string">
EventDate,DateTime;EndDate,DateTime;fRecurrence,Boolean
</property>
The issue I have is that I dont know the field name... Any wildcard I could use?(%%%
and ***
didn't work) Any other way of getting all the fields name would work too.
Note: It's to understand and play with recurrent events.