Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
joelle_alhanna
Contributor II
Contributor II

Hide / unhide textbox depending on values

hi,

I have a list of expression and multiple text box.

I need the following:

- if I choose expression 1 and 2 , textbox 1 and 2  will be displayed with the values of expression 1 and  2

- if I choose expression 1 , 4 and 7, the textbox 1 , 2 and 3 will be displayed with the values of expression 1 ,4 and 7

-ect,..

 

please advise

 

7 Replies
sunny_talwar

You can set unconditional display statement like this

Text Box 1 -> GetSelectedCount(ExpressionField) >= 1
Text Box 2 -> GetSelectedCount(ExpressionField) >= 2
Text Box 3 -> GetSelectedCount(ExpressionField) >= 3
Text Box 4 -> GetSelectedCount(ExpressionField) >= 4
Text Box 5 -> GetSelectedCount(ExpressionField) >= 5
Text Box 6 -> GetSelectedCount(ExpressionField) >= 6
Text Box 7 -> GetSelectedCount(ExpressionField) >= 7

felipedl
Partner - Specialist III
Partner - Specialist III

You can use the Layout part of the chart to set this kind of property based on what you need 

sample.png

And using a simple if statement, like if(Whatever is true, 1,0) it will show / hide the needed panel.

 

Felipe.

felipedl
Partner - Specialist III
Partner - Specialist III

@sunny_talwar , you're lightning fast on the responses, save some for us 😆.

sunny_talwar

I responded 6 minutes after the question was posted... that seems to me as Sloth slow 😉

sunny_talwar

Also, both our answers are incomplete individually, but together we gave the complete solution. So, isn't this awesome?

joelle_alhanna
Contributor II
Contributor II
Author

what I meant is: for every time I change the selected expressions, textbox will be filled one after the other and in order of expression, the remaining text box will be hidden.

 

please find attached

sunny_talwar

I believe so... what exactly is the issue here?