Custom Task - "Transfer"
Has anyone done something like this already and can help me out?
Best Answers
-
seth_coussens Member Ninja IT Monkey ✭✭✭✭Geoff_Ross said:Hi Chris, yes that does exactly what you want. If you want to fully replicate the Escalate task in the console you would also need to set the Escalated check box with pageForm.viewModel.Escalated = true; in the code.
pageForm.viewModel.set("Escalated", true);
11 -
seth_coussens Member Ninja IT Monkey ✭✭✭✭No problem, Chris. Let us know if there is anything else!5
-
seth_coussens Member Ninja IT Monkey ✭✭✭✭You add something like this to rename the OOB assign analyst by group:
//change the name of group assign app.custom.formTasks.add('ServiceRequest', null, function (formObj, viewModel) { formObj.boundReady(function(){ $('li[data-bind="click: analystByGroup"]').text("Reassign/Transfer"); }); }); app.custom.formTasks.add('Incident', null, function (formObj, viewModel) { formObj.boundReady(function(){ $('li[data-bind="click: analystByGroup"]').text("Reassign/Transfer"); }); });
6
Answers
https://community.cireson.com/discussion/46/assign-to-analyst-by-group#latest
Thoughts?
Follow-up question would be: How can I rename the task that shows on the right-side menu to something like "reassign / transfer" ?
I attempted to perform this test just now and noticed that even though I selected "Support Group B" and did not choose an analyst > click OK, it still had the same "Support Group A" listed. Even opening the incident form and viewing the history tab indicates that no changes were made to the support group assignment.
It could be related. I'll have an answer most likely in the morning as I'm knee-deep in another task.