Recently active
Hi, I want to disable drop down list on mashup loaded and when the user clicks a button it must be enabled so that the user can select the data. Is there any way to do this by using a service? And can we call mashup widgets into services or can we invoke mashup widgets from services?
I installed ThingWorx 8.4 and opened the web with IE Edge and it doesn't open. I checked the message with the developer tools and the output was:
Hi, I want to refresh the service of the "main mashup" on the button 'clicked' event of "repeater mashup" of "Collection Widget". Can anybody provide suggestions for the same. In other words, Collection widget has a button, which has to refresh a service in main mashup.
Hi all, I'm Ilona from Hungary and i'm working with ThingWorx for 1 year. I have a big problem with TWX. The cenrtal IT has upgraded the system to 8.4.4 version, and from it the included database went wrong. The upgrade was at 2019.08.27. I tried to explain the error: The Datashape is (attached). In the DataTable is an important field, named "TableIndex" is a #NUMBER field. I have 145 rows. When i run QeryDataTableEntries service I get the all 145 line. ---> OK When i run QeryDataTableEntries service with a condition: ID=145, I get this line. ---> OK When i run QeryDataTableEntries service with a condition: DatumBe=2019.09.09. --> I get 4 lines -->OK BUT When i run QeryDataTableEntries service with a condition: TableIndex=4, I get just the older lines, before the upgrade, and the new lines not. What could be this problem? What is different between version 8.2.2 and 8.4.4?? Maybe the caracter coding? Can I set
Hi, My customer has 100,000 production files generated per day, they want to store in ThingWorx and view the File by searching the file path . The files should be remained for 6 months at least , so about 20 millions records . I'm going to use FileRepository to store these files , but can it afford the files ? It seems there is no database table for FileRepository and it only rely on the OS file system to search , right ? Regards, Sean
Hi all, Does someone would have label or value display (font) responsive to provide me? I am creating a responsive mashup and I need these widget. Regards, Leonardo.
Hi, We are getting a lot of tickets related to Tunnel, A lot of daemon tunnel sessions are created and stay there for many days even that login users disconnected for a long time. Any suggestions would be greatly appreciated! My Bests, Hung Tran
We have a scenario where we need trigger event after when new file uploaded to our file repository. What's the best way to implement it?
hi, I have taken a grid(grid1) on which i am displaying data based on filters and button click. When i select a row from grid1 on selectedRowChanged property, I populated data in another grid(grid2) based on input of selected row of grid1. But when i changed my filters and click on button i just wanted to show data in grid1 and based on grid1 my grid2 data is displayed. But my grid1 row remains selected and grid2 data populates. How can i deselect row of grid1 ? Regards, Sheetal
I have written a sql query where when i execute I am getting the result in output window but when i bind that value to led it's showing nothing. I have followed https://community.ptc.com/t5/ThingWorx-Developers/How-to-show-the-SQL-query-result-in-LED-display-or-Value-display/td-p/505569 But there is no use can anyone please help me in this ? Regards Bhargav
Hi at all!Currently I´m using the Dropdown widget for a selection. https://support.ptc.com/help/thingworx_hc/thingworx_8_hc/en/index.html#page/ThingWorx/Help/Mashup_Builder/Widgets/DropdownWidgetBeta.html On the desktop everything works fine but when I switch to my mobile phone they disappear. The other widgets are still there. I know that they are currently a beta version, but do you know why this is happening or do you know a workaround for this?Thanks!
Hello, I'm a newbie in thingworx analytics but I come from data analytics. Actually, the learner is not new for me but when I configure the predictive model, I saw that I can add more leaners. So, that means the analytics module shall try to use these methods to learning the data and choose the best fit (highest ROC, RMSE, etc.) method ??? If not, what does the module do exactly ????
Hi, I have an application where a Thing must be connected to different Remote industrial sources (IndustrialGateways). What is the best practive to do so ? When using remote thing template, I can only select a single object. Thanks
Hi , I always have a question although it's not so important. For every term of the mode tag , I see duplicate tags . but why ?
Hi everyone, I am working on a project where I have 10 entities with the same (about 30) properties, and I would like to use Thing Template for the development. All these entities need to be remote things connected through an Industrial Gateway object. I would really like to avoid manually using the "Manage Binding" for 10 things of 30 properties each, which could potentially change in the future. The only thing to modify in each entity would be the numbering in the Source field for all the properties (i.e. Temp01 in Thing01, Temp02 in Thing02,... etc): is there any way I can make that number into a parameter I can simply set for each of the things created off the initial template?
Hi all, I want to document input fields and grid data in to PDF format, Do we have any option for that? Thanks, Janakiraman P
Hi all, I am trying to display data from my infotable on a custom XY chart widget that I've made. However, no data is displayed on the XY chart and I don't know where I'm going wrong. Infotable showing x and y values this.updateProperty = function (updatePropertyInfo) { if (updatePropertyInfo.TargetProperty.indexOf('Data') === 0) { var dataRows = updatePropertyInfo.ActualDataRows; TW.log.info('Datarow: ' + dataRows); if (updatePropertyInfo.TargetProperty === 'Data') { this.setProperty('Data', updatePropertyInfo.RawDataFromInvoke); this.drawChart(dataRows); } }} this.drawChart = function (rowData) { var widgetProperties = this.properties; if (rowData != undefined && rowData != "") { var data = rowData; } /* chart drawing code happens here*/ TW.log.info('Data: ' + data);} console log So what I'm doing here is getting the data from the ActualDataRows, setting the data by using updatePropertyInfo.RawDataFromInvoke and passing it into the drawChart
Following the steps in this guide I was able to get the installer to run, but it's failing. Error message is not of much help. Following some forum recommendations I uninstalled and reinstalled the OS. i.e. new VM. Running Ubuntu 18.04 on an Azure F4 VM. It appears to be similar to this unsolved windows 7 issue, which was asking for some logs, I attached the install.log in case that is relevant Any thoughts on what to try next? ---------------------------------------------------------------------------- Configuration Summary Review and confirm the following configuration settings: Installation directory: /opt/ThingWorxH2Trial-8.4.0-SNAPSHOT Local ThingWorx port: 8080 Local ThingWorx SSL port: 443 Minimum Java heap size for ThingWorx: 1024 Maximum Java heap size for ThingWorx: 2048 Press [Enter] to continue: ---------------------------------------------------------------------------- Setup is ready to install ThingWorx Trial for H2. Do you want
I tried to import through service by using csv parser but error message popped,so anyone help me to import the csv file in service. I attached the service code below
Hi , When creating DataTable with service dynamically, I sometimes get the error "[1,018] Data store unknown error: [Error occurred while accessing the model provider." . var params = {name: dataTableName,description: "",thingTemplateName: "DataTable",};Resources["EntityServices"].CreateThing(params);Things[dataTableName].SetDataShape({ name: shapeName });//Things[dataTableName].SetProjectName({ projectName: "ABCD" });Things[dataTableName].EnableThing();Things[dataTableName].RestartThing();Things[dataTableName].SetPersistenceProvider({name: persistentProvider});Resources["EntityServices"].AddShapeToThing({name: dataTableName /* THINGNAME */,thingShapeName: "LockableThing" /* THINGSHAPENAME */});Things[dataTableName].EnableThing();Things[dataTableName].RestartThing(); And, if error occurs, I have the following exception handling to rollback: var params = {name: dataTableName /* THINGNAME */};try{Resources["EntityServices"].DeleteThing(params);logg
Hi all, I am trying to display data using an XY chart from an infotable on Thingworx. I am aware that I can just use the existing XY chart widget in Thingworx but it does not meet the requirements which I need for a task. Therefore, I have decided to use d3.js to fulfill my requirements. The image shown below is what I have coded using d3.js and imported to Thingworx. However, the data values are hard-coded and that is not what I want. I want the values of XAxis and ASensor to be displayed on my XY chart but I am unable to do so despite binding the infotable with my data. I have attached the relevant files for reference. Any help will be greatly appreciated!
Hi, We are using Creo Product Insight for ThingWorx extension on top of the ThingWorx Analytics extension. How can we create our own dashboards, mashups for showing data using the already existing services of ThingWorx Analytics and Creo Product Insight for ThingWorx extension. Can anyone please share the documents for the same with examples, so that I can go through it. Best regards, Aditya
Hi all, I am using the server free 30 days to test. I was able to connect my ThingWorx Foundation with my PLC through of ThingWorx Industrial Connectivity. Now I would like to communicate my local database with thingworx foundation. Does someone has any guide that can help me with this? Regards, Leonardo
Hello, i already have problems looking for services like getapplicationkey for connecting with vuforia and getlicense to get and update the license
Hi everybody! We have the following setup: - running Thingworx Instance with MS SQL DB at Version 8.4 - running Influx DB at Version 1.7.8 -> listening on http with port 8086 - Both running on the same machine e.g. hostname: mythingworx.local - Influx added as successfully as Persistance Provider in Thingworx -> everything fine What we want: - Secure connection between Thingworx and InfluxDB with HTTPS Problem: - InfluxDB runs fine on HTTPS at Port 8086 - We have corporate generated SSL certifcates - We can execute Queries via HTTPS with postman - We changed the url to Influx in Thingworx to https - but: Thingworx only says: unable to update persistance provider - Thingworx is no longer able to connect to InfluxDB Logoutput in Application Log: [message: Import Failed: Unable to update PersistenceProvider: Unable to connect to the PersistenceProvider: InfluxDB] Unable to process import: Unable to update PersistenceProvider: Unable to connect
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.