Feb 19, 2018

Spotfire data science

https://datashoptalk.com/category/data-science/

Feb 4, 2018

Spotfire AWS Integration

https://www.youtube.com/watch?v=_yn7oOV4h90

Jan 9, 2018

Clickable column in Spotfire

https://community.tibco.com/wiki/how-make-clickable-links-spotfire-table


To add email as clickable.
Main Menu> Edit: Column Properties > Properties tab> Link Template -> mailto:{$}

Open table in chart and email will be linked and open outlook with email address when we click. 

It may not work in Chrome. only IE tested. 

Dec 21, 2017

Manually configuring a Spotfire Web Player service

https://docs.tibco.com/pub/spotfire_server/7.6.1/doc/html/tsas_admin_help/GUID-13E15745-41ED-4811-A263-20D84838EC1A.html


How to execute any IronPython script from the JavaScript (mashup API) in TIBCO Spotfire

How to execute any IronPython script from the JavaScript (mashup API) in TIBCO Spotfire


https://community.tibco.com/wiki/how-execute-any-ironpython-script-javascript-mashup-api-tibco-spotfirer

  1. Define the selected IronPython script to execute when the property is updated.
  2. Create a new document property in the Spotfire Analyst client and define a script trigger.
  3. Modify the property by calling the Document.setDocumentProperty method in the JavaScript code where you want the script to trigger
// Define the Spotfire handle var webPlayer = new spotfire.webPlayer.Application(server, customization); webPlayer.onOpened(onOpenedCallback); ... // Callback triggered after analysis is opened function onOpenedCallback(analysisDocument) { // Modify property to trigger Spotfire script xyz analysisDocument.setDocumentProperty("abc", ""); }