Skip to main content
April 26, 2022
Question

any one suggest me how to create text fields like 2 cross 2 , 10 cross 10 pattern ......etc

  • April 26, 2022
  • 3 replies
  • 0 views

i tried but i didn't get expected out put..

a!localVariables(
a!forEach(
items: enumerate(10) + 1,
expression: {
a!forEach(
items: enumerate(10) + 1,
expression: a!textField()
)
}
)
)

3 replies

gopalk2865
Participating Frequently
April 26, 2022

Hi, could you please elaborate your question little bit and your use case?

harshitb6843
April 26, 2022

To create vertical textFields, you can just add a textField below another. But to arrange them side says, you will have to use either columns layout or side by side layout.

 

a!forEach(
  items: enumerate(10),
  expression: a!columnsLayout(
    columns: a!forEach(
      items: enumerate(10),
      expression: a!columnLayout(
        contents: a!textField()
      )
    )
  )
)

April 26, 2022
  • thank you harshitb0001 .. i got expected result for your response.