Why the value binding field is not available in the latest version of uipath orchestrator and also What is the alternative field for Value binding field in uipath apps?

I have created an UiPath app and tried to link the backend arguments which were created in the UiPath studio after uploading the process in the UiPath apps. But whenI tried to do link the value binding field is not displaying in latest UiPath orchestrator version.

Is there any alternative solution for this value binding field in UiPath?

Please find the screenshot below:

1 Like

@vignesh_S.M

Value binding is replaced or removed in latest apps

You can use event and use assign in it with page.container.controlname format to assign the required value to the control..

For your case it would be mainpage.fetchcustomerdetailspage.layout.container.textbox = variable/value to be assigned

Cheers

Hi @vignesh_S.M

  • Use the OnClick (or similar) event of the control
  • Call the Process and map input/output arguments there
  • Bind output arguments to App variables
  • Use those App variables to populate TextBox Default value or other controls

So the alternative is to work with App variables + Rules instead of direct value binding. This is the new recommended approach in UiPath Apps.

Within this event how to assign it?

Hi @vignesh_S.M

Value binding is removed in the latest UiPath VB Apps.
Official replacement: use App Variables + Set Value rule + VB Expression fields (Default Text / Text).

For more pls check:

If helpful, mark as solution. Happy automation with UiPath

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.