" /> GVP Input block - Genesys CTI User Forum

Author Topic: GVP Input block  (Read 2217 times)

Offline lekie

  • Jr. Member
  • **
  • Posts: 90
  • Karma: 0
GVP Input block
« on: December 08, 2014, 02:31:43 PM »
Advertisement
Dear all,

How to configure input block in composer to support input *1?


Regards,
Lekie

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: GVP Input block
« Reply #1 on: December 08, 2014, 02:34:10 PM »
What is "input * 1" ???  ???

Offline msh

  • Newbie
  • *
  • Posts: 30
  • Karma: 1
Re: GVP Input block
« Reply #2 on: December 08, 2014, 02:56:48 PM »
If you mean that the customer should be able to enter *1 in the input block you will need to create a custom DTMF grammar.

Something like (off the top of my head, not tested):

[code]
<item repeat="0-2">
  <one-of>
          <item> 1 </item>
          <item> 2 </item>
          <item> 3 </item>
          <item> 4 </item>
          <item> 5 </item>
          <item> 6 </item>
          <item> 7 </item>
          <item> 8 </item>
          <item> 9 </item>
          <item> 0 </item>
          <item> * </item>
      </one-of>
</item>
[/code]

Offline lekie

  • Jr. Member
  • **
  • Posts: 90
  • Karma: 0
Re: GVP Input block
« Reply #3 on: December 08, 2014, 04:23:06 PM »
yes, thanks you ;D

I have to create new grxml to support enter * and How  to use customize grammar in input block?



Regards,
Lekie
« Last Edit: December 08, 2014, 04:27:14 PM by lekie »