HI All
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
HI All
i have clone the service operation work space After i have change scope Incident Management for Service Operations Workspace,
i have checked the client scripts but that related client script not appears to me
i need change the full name i have try but not changed,
any body help me this one,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
53m ago
Hi @basha shaik ,
Click on the icon which is showed in the above image,
Then find the client script named as InitialTranslations,
Then open the client script and modify the client script, like below
/**
* @param {params} params
* @param {api} params.api
* @param {any} params.event
* @param {any} params.imports
* @param {ApiHelpers} params.helpers
*/
async function handler({
api,
event,
helpers,
imports
}) {
const userGreeting = await helpers.translate('Hello {0}!', api.context.session.user.fullName);
api.setState('userGreeting', userGreeting);
}
On the Same page on the left side scroll up you can see the body(display in the above attachment), click on that and on the right you can see the events, find out the page ready event ,add click on event handler and select the InitialTranslations client script.
Then save the page and observe the change in the homepage.
If my response helped, mark it as helpful and accept the solution.
