Hello Community,
In UiPath Apps, as shown in the image below, this is a table control, and I want to add a dropdown list to the ‘Status’ column. How can I do this?
table is a display control…you need to use edit grid which will give option to customize
cheers
Can you please elaborate?
Yes Got it…Thanks a lot
it would create an output collection or table whcih will have updated values
can you please elaborate what is not updated?
cheers
As shown in the screenshot above, I have added a dropdown to the ‘Status’ column. However, when I try to update the column with different values from the dropdown, the changes are not being applied or Updated.
Where they are to be updated?
From where are you getting the values?
Did you try page.editgridname.value to check the updated values?
Cheers
page.editgridname.value from where I’ll get this
Actually I wanted to keep updated data row but from where I can do this?
Normally that is how you accessvalue from one control of a app
For example to verify use another table at bottom and in the input add yourpagename.editgridcontrolname.value in the expression editor
Cheers
Processes.Process_A.out_dt1.UpdateRowAt(MainPage.EditGrid.RowIndex, MainPage.EditGrid.SelectedItem)
``` I wanted to use this Query to save my Updations in Table
But I’m not able to use this
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.