How can I update the case data?

How can I update the case data and reflect the changes in the input fields?

7 Likes

You can update your case data in Alpha using the alpha.co.update(“key-name”, “value”) method. This will automatically reflect the updated value in the input fields if they are bound to that key.

alpha.co.update("userName", "John Doe");

If your input field is bound to userName, the UI will automatically reflect “John Doe” once the update is done.

10 Likes