it’s easy to make invisible row in repeat section. But we need to make invisible first column of repeat. How can we make it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assume you have 4 columns for each row containing the below information,
and the node look like this
then the xforms:repeat content will look like this
Now, since you does not want to show the first column( in this case doj) on all rows, simply remove the first
<td>inside the repeat content.Update:
Based on OP Comment, yes we can hide and show instead of removing the code by using
<xforms:group>tag. Above code is modified to reflect this.