Recently active
I need to be able to make a table through which, if there is changes in data, the no of rows and columns should be flexible enough to change, which currently is not possible if you create a table via data shapes. I wish to know if it is possible to create a table which has flexible of no of rows.
I am using the AddRow function to update an infotable.It is copying values into all other fields except the primary key field.Kindly advise me on how to correct this. See code snippet below and attached screenshot of the infotable. // Get a direct reference to the infoTableProperty on the entityvar Pump_Curves = me.Pump_Curves;// Create a new NamedVTQ entry object to add to the infotablevar newEntry = new Object();newEntry.Delta_P = 1.87; // primary keynewEntry.RPM_700 = 14;newEntry.RPM_800 = 15;newEntry.RPM_900 = 1.2;newEntry.RPM_1000 = 2.1;newEntry.RPM_1140 = 5;newEntry.RPM_ACT = me.F1; // Current flowratePump_Curves.AddRow(newEntry);
Is there any way to add Border Radius to the Modal Popups in the Thingworx 9.3@c_lowy @CarlesColl @paic @slangley Thanks,Shashi.
Hi all,I want to give permission to ThingTemplate to say "Template1" through API. What is the snippet used for it? Thank you!
I am getting this message - "Your account currently does not have a hosted server. Please create one by pressing the button below" -- but i am not seeing any button there so that I can start my trial server.
Wondering anyone had it work ever ? The online help gives an example for the host field with http url , so confusing. I thought it should be bootstrap server.
I have the attached Line Chart with 3 series and 3 sources. the data is only being logged on change but I would like to show the line (in this case Dancer PSI) to keep showing the line after the last logged value.can this be done?
I know this is probably a simple question, but I've been stuck on this for hours. I have a service configured to copy a large file over to all things that fit a certain criteria (software version), but I need some sort of if/else statement to check if the file is already there, and not copy the file again if it already exists. I cannot figure out how to check if the file exists. Help would be greatly appreciated! Edit: My first approach was to run a browse directory service, return that as an intotable, then make an if then statement checking if the filename I'm looking for was included. But I since found out the .includes does not work in TW. Ideas? Thank you.
I am unable to find the Thingworx Analaytic Extension, Please drop it here if you have. Thanks in Advance
We are trying docker deployment of thingworx on the CentOS VM. We have followed the procedure as given in the documentation. On running the docker-compose command, the command is getting run successfully. But thingworx is not getting up. we checked the docker container status. The Thingworx container is exiting after running docker-compose command. Other containers i.e. ms-sql, mssql init, security-cli are in healthy state.The logs for the thingworx container were checked. Logs say, ""Merging reference conf with overrides/docker-entrypoint.sh: line 65: /usr/local/bin/install-var-dirs.sh: Permission denied". This error was seen multiple times in the container logs. What is the root cause of this issue ? How to fix this and get thingworx running ?Thanks.
Hello, TWX I use: ThingWorx 9.2.3-b189 I have this issue with bar char xaxis labels. Labels are cut and there is no option in bar chart widget to increase the size of xaxis label, like xaxis format. That option is only available for yaxis I would like to increase the size of of the label, to get the full name I try also with web components but no luck so far.example: Thanks
Line chart . i like to give the different colors for values for different line.is there a way to change a colour for the line values
Hello. i am using this pareto chart but when there is data that is too small, you can't see the bar (see attached picture for R&D). is there a way to always show a bar regardless of the value?
Hello everyone,How to restrict the data exporter widget from downloading empty infotable? Thank you
How to wrap the Xaxis label text in the Pareto chart?
I was creating a project, and I ended up having 30+ dashboards/mashups for output. Among these mashups, only the display info-table/Table structure is different (the column values are different for almost all of them). Is there any way I can reduce the number of dashboards/mashups, by having the mashup adjust the displayed table to different rows and columns automatically? Since hosting 30+ mashups for output is too much load on my tomcat server, I need a simple method to make the mashup based graphs and tables adapt to the data and filters selected instead of having a full mashup for every different selection of data and filters .
How to apply CSS for slider widget?I need to change the progress bar color of slider widget at different values.
I want to add an additional event to the fileupload widget but our backend support team have been able to locate the existing fileupload files. They found the deprecated dndfileupload files but not the current widget files. Does anybody know where the files are located on version 9.0+? Just want to add an event for when upload starts.
Hi,We want to add entities to a project but we can´t. We get an error when we try to add a thing to the project in the entities area.This is the error: [L: ERROR] [O: c.t.s.a.AuthenticationFilter] [I: ] [U:] [S: ] [P: ] [T: https-jsse-nio-443-exec-3] Servlet execution threw an exception But we can change the project if we edit the thing with the same user.We are using 9.1.3 version.Does anybody know what could be the cause of this problem?Thanks in advance.
Is it possible to create a service, which initiates download to my local directory?So far I see only an option to write a service to download/write CSV file to server as below: let params = {path: "anyPath" /* STRING */,data: anyInfotable /* INFOTABLE */,fileRepository: "SystemRepository" /* THINGNAME */,withHeader: true /* BOOLEAN */};Resources["CSVParserFunctions"].WriteCSVFile(params);
The left (widget, layout etc.) , right (data, services) and bottom (widget ptoperties) sections in mashup builder has disappeared suddenly. It happened after I installed some 3rd party widgets. I have removed them now but still cannot recover.
Can anyone help me with this flickering symbol appearing on my grid widget. This symbol appeared after I binded the serviceinvokeCompleted event to GetProperties.Thanks
We have roughly 23000 rows in Thingworx Data table and we have Windchill Change Management Dashboard built based on the data available from the data table.We are seeing poor performance of mashup loading with just a small set of data. We resized the tomcat JVM and did Postgres performance tuning recommended by PTC. Any ideas?
Hi everyone, I created a Datatable using the below mentioned snippet. DataTableName = "DT." + Facility + "TableInfo"; Resources["EntityServices"].CreateThing({name: DataTableName /* STRING */,thingTemplateName: "DataTable" /* THINGTEMPLATENAME */,projectName: "Monitoring" /* PROJECTNAME */,tags: "Applications:Set" /* TAGS */});Things[DataTableName].SetDataShape({name: "DS.TableInfo"});Things[DataTableName].EnableThing();Things[DataTableName].RestartThing(); When I ran the service from the Thing itself, datatable gets created and shown in the composer but when I tried the service through mashup, datatable is not shown in the composer. On executing the same service again, it shows Datatable already exists. Anybody knows, what could be the reason?
I'm facing an issue in the Timeseries chart scrolling for Zoomed-in data.Have created a Left/Right scroll button to adjust the X-axis date range to perform a scroll to left or right direction.I have done a logic like to set the XAxisMaximum & XAxisMinimum values binding to adjust the graph X-axis range.- Without zooming the graph scroll is working as expected.- But the problem is when I do a Zoomed-in for a specific point set and then try to scroll left or right. The graph is not populated as expected. Because I'm unable to find an option to read the date range min/max for a zoomed-in point set. TimeSeries Chart View 1. Above image highlighted two arrow buttons to use to perform the scrolling. Scroll logic is working when it is in normal graph view. 2. Below image used to zooming for a specific point set. Zoomed-In View: If we do the zooming for a specific point set and try to scroll the graph.How do we read/get the start(XAxisMinimum) 
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.