I have a requirement to change the label of the "Submit" button
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2024 06:13 AM
I have a requirement to change the label of the "Submit" button to "Punch Time" in a specific record producer. How can I do that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2024 10:34 PM
Hi @komal shetty ,
The documentation that ServiceNow has isn't really straight forward. The way it describes on how to change the label suggests that you're changing the out-of-box widget instance of the Service Catalog widget (widget-sc-cat-item-v2). However, it can't be edited because it's locked down so no one except for ServiceNow employees can change it.
Also it depends on what you have installed. If you have HRSD installed and are using the Employee Center the Servie Catalog widget (widget-sc-cat-item-v2) is actually embedded in a different widget. Thus the widget instance to modify would be different than what's suggested in the documentation.
That said, yes it still can be changed and changed without cloning. Here are the best steps (in my opinion) to make the change.
- As admin or portal admin
- Navigate to the portal your company is using.
- Select a Catalog Item/Record Producer so that it takes you to the rendered item as if you were going to submit a request.
- Perform a Ctrl-right click on the widget
- This will take you to the page editor with the widget instance selected displaying the widget instance form. Ensure you are in the appropriate scope to edit
- In the Additional JSON section add in the following code
"record_producer_label":{
"value" : "Your Label Here",
"displayValue": "Your Label Here"
}
End result