Jump to content

Shandilya Peddi

Members
  • Posts

    478
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Shandilya Peddi's Achievements

Rising Star

Rising Star (9/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Glad that it worked. It would be great if you can add any information about the changes you made to the CSS/JavaScript as it might help others. Thank you!
  2. The issue is mostlybecause the Drop Down list uses a Z-index of 0 while the Side Menu sets its Z index to 2 in the "sidedrawerDiv" java script. So when you click on the Dropdown the list is shown in the backgroun.You will have to change this to 0 so that you can view the drop down list values in the foreground
  3. You can use the AddRange method instead where you can pass multiple columns list as argument, https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-a... If you filter on the data table that you apply this DataRelations Tool on, then you should generally see an Refresh icon for the Data Relations visualizations that should recalculate your result
  4. Currently it is not possible to arrange the order of the columns in the drop downlist.I would suggest you to file an enhancement request for that feature in the Ideas portal linked above: https://ideas.tibco.com/
  5. You can use the AddRange method instead where you can pass multiple columns list as argument, https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-analyst_api/topic=html/M_Spotfire_Dxp_Application_Calculations_DataRelationships_DataRelationshipsColumnCollection_AddRange.htm If you filter on the data table that you apply this DataRelations Tool on, then you should generally see an Refresh icon for the Data Relations visualizations that should recalculate your result
  6. When authoring from Spotfire WebPlayer you can connect to Google Analytics and Salesforce only, If you want to connect to other data sources then you need to author your analysis from TIBCO Spotfire Analyst https://aws.amazon.com/marketplace/pp/TIBCO-Software-Inc-TIBCO-Spotfire-...
  7. To troubleshoot, can you enable Developer Tools in both the main browser where you open the mashup file and also in the login popup dialog. Check for any errors in the console tab here that might help troubleshoot
  8. From the Data Canvas section can you check if the data table's data loading settings is set to Always New Data or Stored Data, https://docs.tibco.com/pub/sfire-analyst/11.1.0/doc/html/en-US/TIB_sfire... If it is set to Stored Data then changed to Always New Data or NewData when Possible
  9. Check the following knowledge base article on how you can enable Forms authentication along with OIDC, https://support.tibco.com/s/article/How-to-enable-forms-authentication-i...
  10. Currently we do not have any API that can be used to toggle the visual themes on a button click,I would suggest you to file an enhancement request for that feature in the Ideas portal linked above: https://ideas.tibco.com/
  11. There is a template attached in the following wiki article, can you check it https://community.spotfire.com/wiki/using-spotfire-text-areas-increase-usab...
  12. Can you try the following where you specify the path of the dll and see if it helps you import the dll import sys sys.path.append(r"C:Microsoft.Office.Interop.Excel.dll")
  13. Currently there is no API to set the transparency of a ReferenceCurve.I would suggest you to file an enhancement request for that feature in the Ideas portal : https://ideas.tibco.com/
  14. You can acheive this using Data Functions and IronPython scripting. Check the following knowledge base article on how to trigger an IronPython script upon marking, https://support.tibco.com/s/article/Tibco-KnowledgeArticle-Article-45663 You can use the below script to toggle the details on demand panel based on marking, from Spotfire.Dxp.Data import * #get the table which will be marked table=Document.Data.Tables["SalesAnzzdMarketing"] #get the current data selection dataSelection=Document.ActiveMarkingSelectionReference #get the row selections rowSelection=dataSelection.GetSelection(table) # check the row count in the markings selected rowCount= rowSelection.IncludedRowCount #get the DOD panel panel=Document.ActivePageReference.DetailsOnDemandPanel #check if marked rows are 0 or more and toggle the DOD panel if rowCount==0 : if (panel.Visible): panel.Visible=False else: if(panel.Visible==False): panel.Visible=True You can also check the following custom extension that can be used instead of a data function, https://community.spotfire.com/wiki/custom-datetime-data-function-tibco-spotfire
  15. When using Load Balancers you can setup a Health Check URL.Currently we do not have any APIs for spotfire server or webplayer or node manager https://docs.tibco.com/pub/spotfire_server/latest/doc/html/TIB_sfire_server_tsas_admin_help/server/topics/enabling_health_check_url_for_load_balanced_servers.html I would suggest you to file an enhancement request for that feature in the Ideas portal linked above: https://ideas.tibco.com/
×
×
  • Create New...