Feedback

  • Contents
 

IS_Attr_DialinsgMode

Definition

This read-only attribute returns the dialing mode for the current campaign. It represents the dialing mode of the Interaction Dialer call that is presented to the agent. The possible values are:

0

Power/Predictive mode

1

Preview mode

2

Place Preview

3

Own Agent Callback

4

Own Agent Callback Preview

5

Own Agent Callback Place Preview

7

Agentless

8

Precise

Scripter will recognize click events from any HTML element whose name has an associated action documented in this API (e.g.: "IS_Action_CallComplete"). If the script needs to associate several buttons with the same action, then define the action using a meta element and call the click event on the meta element from the button(s).

Usage

Read       Yes

Write       No


Example

This is an example of a dialing mode edit field.

<head>
<script language="javascript">
window.onload = InitTagValues;
function InitTagValues() {
    tagDialingMode.innerText = IS_Attr_DialingMode.value;
}
</script>
</head>
<body>     <p>The current dialing mode is: <em id="tagDialingMode">[Dialing Mode]</em></p> </body>