Skip to main content
1-Visitor
May 15, 2018
Solved

How to show textarea and label widget on dropdown item selection?

  • May 15, 2018
  • 4 replies
  • 1984 views

Hello,

I have one 'break reasons' dropdown list. My requirement is to show 'Reason' label widget and respective textarea widget on dropdown item(item - 'other') selection and for dropdown items other than this I want to disable textarea. How to implement that?

 

Thanks.

Best answer by posipova

You could use the Validator widget and the navigation widget with a popup panel mashup containing a label and a textarea.

 

In your validator you would set the expression to evaluate if the item "other" was selected in the list. If true, it would open the popup.

4 replies

20-Turquoise
May 15, 2018

You could use the Validator widget and the navigation widget with a popup panel mashup containing a label and a textarea.

 

In your validator you would set the expression to evaluate if the item "other" was selected in the list. If true, it would open the popup.

20-Turquoise
May 15, 2018

posipova20-TurquoiseAnswer
20-Turquoise
May 15, 2018

You could use the Validator widget and the navigation widget with a popup panel mashup containing a label and a textarea.

 

In your validator you would set the expression to evaluate if the item "other" was selected in the list. If true, it would open the popup.

ras1-VisitorAuthor
1-Visitor
May 16, 2018

Thanks @posipova.