UiPath items

@Tamilselvan hen I add list of strings as input to form dropdown values are displayed twice


image

and also how to make a dropdown as child dropdown

@Vajrang The way dropdown implemented is wrong. It should be in the following order.

  1. For a Dropdown.

select → string → it will show selected value
select_dropdown → List or Dict <string, string> → it will show values in dropdown.

look at the image below

So you have to have 2 variable. one is to tell selected items in the list. another one is list of items to be displayed

2 Likes

@Vajrang Attached sample workflow for Dynamic Dropdown

Dynamic Dropdown.xaml (7.9 KB)

2 Likes

yes I know this thanks