Recently active
Hello all,does anyone know or already had to deal with uploading in thingworx a picture captured directly from dhe camera of a Surface Pro? on other tablets is already possible to do it thanks to File Upload widget, but not on this device
We have about 60 K records in total 30 Datatables, with highest records 30 K in one. Currently 1 HTTP request / second is handled in which CRUD operations performed in 6 - 10 Datatables. We feel that this can cause performance issue. How do we solve this?
Hi, I'm using a button in child mashup of collection widget. It should navigate to a popup on clicking on the icon or button. I have taken selected value from the service and bonded with session parameter and the session parameter is used in the popup.The above approach is working fine with repeater but not in collections.Can anyone tell me how to get selected cell/cell in which button is clicked with collection widget.
Whenever I attempt to use the '.includes()' method on string in ThingWorx composer, I always get an error saying that the .includes method can not be found on the object. I even log the type of the variable that I am trying to edit, just to make sure it is in fact a string. And I still can not get around this. Here's an example of what I'm talking about: var myString = 'I am trying to debug some crazy ThingWorx issues'; var myBoolean = myString.includes('ThingWorx'); *the above code will throw the error: 'TypeError: Cannot find function includes in object I am trying to debug some crazy ThingWorx issues. (GetProcessPartID#22)]' But if I log 'typeof myString', it will log 'string'. What gives?!
What is the best way for configure timer which will check changes(like adding/updating/removing file) in my file repository and get info about created/updated/removed file(like name, date of changing etc.)
Hello guys, I would like to know if it is possible bind more than one single service to the same grid. The idea is to have different buttons (four in my case) and every button calls a different service to show data in the grid (DataShape and everything necessary remains the same) . So Button1 calls a service which shows apples and bananas, Button2 calls a service which shows oranges and strawberries, and so on... I hope what I have requested is possible. Kind regards
what will happen if i install thingworx on local computer which is not windows server 12 or 16 Thanks & Regards Bharathan
Hi, I exected the ReadCSVFile service and it is working but grid widget is not fetching the csv file which i uploaded using FileUpload Widget. I have binded the output of this service to the grid. In Navigate Mashup the grid is not the data. Related post
here is my coding which I want to do calculation using datatable data. output should be "NUMBER". but now result is NaN. Could someone help me figure it out? var query ={"filters": {"type": "And","filters": [{"type": "EQ","fieldName": "Department","value": "Milk"},{"type": "EQ","fieldName": "Kategory","value": "Production Volume"}]}};var output = Resources["InfoTableFunctions"].RenameField({t: Resources["InfoTableFunctions"].Aggregate({t: me.QueryDataTableEntries({ maxItems: undefined,query: query,values:undefined,source: undefined,tags:undefined}),columns: 'value',aggregates: 'SUM',groupByColumns: 'value'}),from: "SUM_value",to: "value"});var result = parseInt(output/10000);
Hi I had created mashup which contains two different widgets i.e Google Map widget and time series widget. The time series widget location shows the "Tank Level" and google map widget shows the tank location. I had used the service available for Thing Templates to bind the data to widgets. I had used "GetImplementingThingsWithData" service to bind location with Google Map widget. Also I had used "QueryImplementingThingsWithPropertyHistory" service to bind tank level with TimeSeries chart widget. I had create 3 things whose data (i.e. location and tank level) I am sending to thingworx. I can see the all three location getting displayed on the google map widget. But I am not able to see the data from all three things in time series chart. The chart looks very weird. Is there any way by which I can show the chart for thing whose location is pressed on google map or any other way to achieve this. Please find the mashup for your reference.
Hi, I am using the TextAtea widget to create am Info-popup to provide explanations about the mashup. However I cannot write a new line adding text directly into the Property Tab. I attach the result I obtain doing a copy/paste from Word. Do you have any solution for that? kind regards, marco
Hi, I'm trying to import Project tagged Entities(i.e. entities.xml) from one machine i.e. Dev to another Test machine but getting below error:- Error importing: error, Not Acceptable "Internal error: com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence" 1st machine(from which export has been taken) is having ThingWorx v8.3 and Manufacturing Apps v8.3.2 2nd machine(Entities to which import required) is having ThingWorx v8.4.4 and Manufacturing Apps v8.3.2 I already added Java Options in tomcat as mentioned when I installed tomcat :- -Dserver -Dd64-XX:+UseG1GC-Dfile.encoding=UTF-8-Djava.library.path=C:\Program Files\Apache Software Foundation\Tomcat 8.5\webapps\Thingworx\WEB-INF\extensions Still I am getting the error when trying to import the entites.xml file. Please help on this issue. Thanks in advance.
Hi all. Currently I am working with a new responsive (advanced) mashup because I want to create a responsive dashboard. In this case, I have two monitors. One with the resolution 1920 x 1080 (20") and other is the notebook with the resolution 1366 x 768 (14"). However, there are widget that does not responsive, so I need put on in front the widget panel and when I to run the mashup and change the monitor the widgets (that does not responsive) widgets don't look right on screen. I am going to let the mashup's print below to facilitate understanding. My question is: Is possible to create widgets responsives? If yes, how?
I have added a CustomClass to a datetimepicker widget. I then referenced my class in my css to make a background color change, and it wasn't working. Upon inspecting the element using my browser's inspection tools, I don't see the class anywhere in the html. If I specify a 'CustomClass' in a widget, shouldn't I see it upon inspection in the browser? Anyone run into this before? Solutions? Or is this a know bug?
Hi, I had created two things using GenericThing and RemoteThing template. I had created "testThingGeneric" using "GenericThing" template. But when I am seeing the properties for the thing, no property is inherited from Generic thing. I had created "testThingRemote" from "RemoteThing" template. When I am seeing the properties for that thing I can see properties like "isConnected" and "lastConnection" inherited from "RemoteThing" template. But we I am seeing the "RemoteThing" template I can see it inherited those properties from "GenericThing" template. Also what does the isConnected property indicates. Please find attached screenshot for more information
Hi,We connected the kepserver with Thingworx. And fetching few tags from kepserver. After some time in kepware the tag quality is GOOD but in Thingworx the tag quality is BAD. What will be the root cause of this issue?Thanks.
I am trying to create a button in a mashup that will change the value of a property of a Thing to 1 when pressed and 0 when not pressed. Any help would be appreciated. I'm new to ThingWorx and this is probably a simple thing to do. Thanks
Hi, I want to create custom spc chart by using plotly.js library. I have gone through the "Creating UI Widget for Thingworx", but I am not able to display chart for input infotable. Most difficulty I am facing in passing the array values to xAxis and yAxis in my drawSpcChart() function. These array values I have to create from my input Data(Infotable) that I will get from a service "All Data" in composer. drawSpcChart function I am calling in afterRender() in runtime.js file. Can anyone please help me in creating the ide and runtime js files for this? Thanks & Regards, Shashank
Hi all, in a mashup, I am using dataPicker, beta widget. I am able to show only the current date, not to bind data. How can I bind data in that dataPicker? Thanks!
Have a problem with FileTransfer event. I wrote a subscription with code like this: if(eventData.isComplete === true){ me.IsComplete = "true"; } And after I execute some of services, but don't have any result. I'm confused about that, because i have no idea in which cases event has triggered.
Hi, Can I dynamically assign datashape to service output? I want to use the service to map fields in mash up. With regards Yedukrishnan
Hi everyone, Today I’m here with a very exciting guest—Janie! Janie recently joined PTC after spending the last two years at a global professional services firm where she held many roles including that of a lead ThingWorx developer. While Janie did do some font-end development work and UI creation, the bulk of her time was spent on the backend writing services that enabled the application’s functionality. In this role, she not only wrote code herself, she also played a large part in the in-platform architectural decisions, determining the best way to utilize the platform in order to satisfy complex business requirements. Throughout her last two years, she worked on various IIoT projects in the manufacturing industry developing a real-time asset health monitoring and OEE/production tracking application to monitor key metrics like downtime and output. For each customer engagement an assessment of IoT platforms was often undertaken in order to assess strengths and we
I have two buttons one is on and other is off. I have two images bulb on and bulb off. If on is clicked bulb on image should be displayed and if off button is clicked bulb off image should be displayed i.e the image should be replaced with first image. I want to do this only with buttons. Is there any way to do it?
I have a label chart widget that I'm manually setting the y-axis minimum, depending on the data returned. Both the 'Y Axis Zeroscale' and 'Y Axis Autoscale' are marked as false. Everything works as expected, except when the data returned is empty. In that case, I set my Y axis min to be 100, but it seems that it's auto-scaling and is instead setting the y axis to be '0' (multiple times). Anyone run into this? Please see snippets, below. Working as expectedY axis reads '0', repeatedly.
Hello, I'm trying to work with the planned operation time. At this plant, it is a three shift system and first shift starts at 7 am. Is there a way to work with the planned production time clock without upsetting it's need to be within one calendar day? Right now when I say something like 7am and set the duration to 23:59, it will not let me. Also, I'm not 100% sure how the OEE quality and performance math works. Because of shifts, we reset out parts count at the end of every shift, so there will be three drops to zero in any production day. Will this be alright for the calculator? Thanks
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.