onTypingUpdate()
チャットウィンドウの顧客のテキストが変更されるとコールされる関数を登録します。プレビューが有効になっている場合、この関数は、顧客がチャットウィンドウのテキストを編集するたびにコールされます。プレビューが有効になっていない場合、この関数は、顧客がチャットウィンドウで入力を開始または停止するたびにコールされます。API バージョン 29.0 以降で使用できます。
構文
1sforce.console.chat.onTypingUpdate(chatKey:String, callback:Function)引数
| 名前 | 型 | 説明 |
|---|---|---|
| chatKey | String | 顧客がエージェントに新しいメッセージを入力し始めると関数をコールするチャットに関連付けられた chatKey。 |
| callback | function | メソッドの完了時にコールされる JavaScript メソッド。 |
サンプルコード – Visualforce
1swfobject.registerObject("clippy.codeblock-1", "9");
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<apex:page >
18 <apex:includeScript value="/support/console/29.0/integration.js"/>
19 <script type="text/javascript">
20 var eventHandler = function (result) {
21 alert('There is a new typing update in this chat');
22 }
23 //Get the value for 'myChatKey'from the sforce.console.chat.getDetailsByPrimaryTabId() or other chat methods.
24 //These values are for example purposes only
25 var chatKey = 'myChatKey';
26 sforce.console.chat.onTypingUpdate(chatKey, eventHandler);
27 </script>
28</apex:page>
29
30