No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
chasitor.sendCustomEvent()
構文
1liveagent.chasitor.sendCustomEvent(type:String, data:String)引数
| 名前 | 型 | 説明 |
|---|---|---|
| type | string | エージェントコンソールに送信するカスタムイベントの名前。 |
| data | string | カスタムイベントと共にエージェントコンソールに送信する追加データ。 |
サンプルコード – Visualforce
1swfobject.registerObject("clippy.codeblock-1", "9");<a href="#" onClick="testSendCustomEvent();">Send Custom Event</a>
2
3<script type="text/javascript">
4 function testSendCustomEvent() {
5 type = 'myCustomEventType';
6 data = 'myCustomEventData';
7 liveagent.chasitor.sendCustomEvent(type, data);
8 alert('The custom event has been sent');
9 };
10</script>応答
このメソッドは応答を返しません。