cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
770
Views
5
Helpful
3
Replies

FinesseJavaScriptLibrary for UCCX 10.6(1)

sreeraman
Level 1
Level 1

Hi All,

 

The latest version of Finesse Script Library available for download is FinesseJavaScriptLibrary-10.5.1.zip

 

Finesse Web Services Developer Guide Suggests using the JavaScript library that came with the release of finesse that is in use

 

 

" If you are developing third-party gadgets for Finesse, you must ensure that your new and existing gadgets

 

use the Finesse JavaScript library that came with the release of Finesse that you use. "

 

I am assuming that this means for UCCX 10.6 (1) that has finesse version 10.6(1) , I have to use FinesseJavaScriptLibrary-10.6.1.zip if such a thing exists.

 

Please advise if this is correct and if yes , please advise if FinesseJavaScriptLibrary-10.6.1.zip is available for download anywhere.

 

I have tried to upload the click-to-call sample gadget from https://github.com/CiscoDevNet/finesse-sample-code/tree/master/ClickToCallSampleGadget  into thirdpartygadget/files folder using sftp but everything is getting copied except finesse-10.5.1.js which I assume is because finesse-10.5.1.js is not compatible with finesse 10.6(1) on UCCX 10.6(1)

 

Thanks for your help.

 

Regards,

V.S.Sreeraman

1 Accepted Solution

Accepted Solutions

ewindgat
Level 5
Level 5

The version is the Finesse version you have implemented.

As of 10.6 Finesse, you no longer need to reference the JavaScript version.

For example...

10.5.1 an earlier...

<script type="text/javascript" src="finesse-10.5.1.js"></script>

10.6 and above...

<script type="text/javascript" src="/desktop/assets/js/finesse.js"></script>

View solution in original post

3 Replies 3

ewindgat
Level 5
Level 5

The version is the Finesse version you have implemented.

As of 10.6 Finesse, you no longer need to reference the JavaScript version.

For example...

10.5.1 an earlier...

<script type="text/javascript" src="finesse-10.5.1.js"></script>

10.6 and above...

<script type="text/javascript" src="/desktop/assets/js/finesse.js"></script>

sreeraman
Level 1
Level 1

Hello ewindgat,

Thank you very much for providing the answer. It worked like a charm.

Regards,

V.S.Sreeraman

You're very welcome!

And, yes, its not an obvious answer unless you happen to know.