Hi there,
Did you try using the Form Properties-UI customization as mentioned in Form?
Thanks!
Thanks for the quick response. The form is actually executed when the user clicks on the Activity hyperlink defined in the datalist in an Userview. I do not see any options to change the Submit Button label here. (I noticed one such option for Run Process, though, but I need one for Datalist as well)
If you're opening a form on the userview via the hyperlink, you should be able to change the button label the way I suggested. Otherwise, there's always an option of using a custom JavaScript to do stuff like these.
Thanks. Implemented as suggested. It works now.
Just for completeness if someone else is looking for it. In forms within a process you can use a customHTML field with jquery like this: <script type="text/javascript"> $(document).ready(function() { $("#assignmentComplete").prop("value", "Your new Label"); }); </script> based on: http://stackoverflow.com/questions/179713/how-to-change-the-href-for-a-hyperlink-using-jquery