I have the following tag in my form to capture a query string parameter.
<xxforms:variable name="param1" select="xxforms:get-request-parameter('param1')"/>
I have many form fields on this form and some of them are required fields displaying the red alert icon. As user fills these fields, the red alert icon changes to green check mark. This works fine on the form without the above variable declaration.
Adding the above line of variable declaration prevents the red alert icons from changing to green check marks when form fields are filled. Need help to fix this.