Recently active
Hi all, I want to bind my alert with widget, for example: When happen an anomaly alert show in my dashboard "Anomaly Detected" I even created my alert and I am showing it in mashup below: Regards.
Hi, I have a master with a menu and a mashup container. On the top of the master I would show the current page title. Some pages (mashups) have lists of items. If I double click them I jump to a new page with the data of the item. Now I will show "machine xzy" in the top of the master. To get the double clicked item I will use the url parameter. How can I get url parameter in master?
Hi, Is it possible and how to allow the user to mark a check box named , for exmaple, "remember me" in the login form, so that the user don't need to input the user/password everytime ? Regards, Sean
I have a combo box with multiple values that will be selected in it.How can i assign this vaues to a service with input as infotable or aything.Basically i want to know whihc all values got selected in the combo box as of now am getting only 1 value instead of all selected values
I am trying to connect to Rspberry Pi and getting the below error - any idea how to fix this. I am able to connect to Raspberri Pi remotely using VNC Connect but not able to proceed any further due to this error. The Raspberri Py and my PC are both connected to my home wifi. pi@raspberrypi:~/microserver $ sudo ./wsems[FORCE] 2019-06-08 18:32:31,230 ./wsems: Initializing EMS ....[FORCE] 2019-06-08 18:32:31,230 main: Using config file /home/pi/microserver/etc/config.json[INFO ] 2019-06-08 18:32:31,230 ./wsems: Creating the WsEms proxy.[INFO ] 2019-06-08 18:32:31,230 ./wsems: Starting HTTP Server.[WARN ] 2019-06-08 18:32:31,231 Main: Encryption is disabled on HTTP Server.[WARN ] 2019-06-08 18:32:31,231 Main: Authentication is disabled on the HTTP Server.[INFO ] 2019-06-08 18:32:31,231 ./wsems: Initializing the ThingWorx REST interface.[FORCE] 2019-06-08 18:32:31,231 httpServer: [INFO ] 2019-06-08 18:32:31,232 wsEmsProxy::initialize: FIPS is disabled.[INFO ] 2019-06-08 18:32:31
Hi there, I would like to get data from a PLC to an AR Application. To realize this I try to get the Data form the PLC to ThingWorx Industiral Connectivety. Then the Data has to be send form ThingWorx Industrial Connectivety to the ThingWorx Composer to connect to Vuforia Studio, right? How can I connect Data from ThingWorx Industrial Connectivety to ThingWorx Composer? Thanks for help.
Hello, i would like to create like a countdown timer in thingworx. that would count from 180 seconds to 0 basically and to have this binded in a mashup. do you think something like this is possible? if so i would need some help. i was thinking about creating a function that counts only once and appeal it in a for loop or something like this and save the current seconds in properties.
Dear Community,I have been running into an issue today and I am calling for help. TL;DR is at the end. I attached an export of a demo thing (DemoJsonParameterToEvent), I will refer to it in the following. For quick reference here is the code of the service: logger.debug("ParameterJson: "+ParameterJson); logger.debug("ParameterJson.FieldNumber: "+ParameterJson.FieldNumber); logger.debug("Type of ParameterJson: "+(typeof ParameterJson)); var objectToCompare = { FieldNumber: ParameterJson.FieldNumber, FieldString: ParameterJson.FieldString }; logger.debug("objectToCompare: "+objectToCompare); logger.debug("objectToCompare.FieldNumber: "+objectToCompare.FieldNumber); logger.debug("Type of objectToCompare: "+(typeof objectToCompare)); var parsedParameter = JSON.parse(ParameterJson); logger.debug("parsedParameter: "+parsedParameter); logger.debug("parsedParameter.FieldNumber: "+parsedParameter.FieldNumber); logger.debug("Type of parsedParameter: "+(typeof parsedParameter)); if (UseParamet
Hi, i am trying to connect my Pi to TW and after i got to the 10th step on the Guide I got this error while running sudo ./luaScriptResources INFO ] 2019-06-03 19:16:00,37 PiThing: MicroServer is now available.[INFO ] 2019-06-03 19:16:00,37 PiThing: MicroServer is online.[INFO ] 2019-06-03 19:16:00,37 PiThing: Successfully registered PiThing with MicroServer.[INFO ] 2019-06-03 19:16:00,200 PiThing: Error occured while accessing EMS. Checking isConnected.[INFO ] 2019-06-03 19:16:00,205 PiThing: EMS is available: true, online: true[INFO ] 2019-06-03 19:16:00,205 PiThing: Attempting to GetPropertySubscriptions from server failed. code: 500, result: i am running wsems and luaScript at the same time I am attaching here the PiTemplate.lua, config.json and config.lua
What would be the best practice to follow if I wanted to let a user delete a row of an Infotable displayed through a Collection Widget by placing a button in every cell of said widget?
Hey guys, I've been having a problem with modifying a data table entry, I've tried all Data Table services but none of them worked, not even the UpdateDataTableEntry, I don't want to delete it and create another one with the information modified as it does in AssignDataTableEntries. Thank you
Hi, In thingworx the maximum resolution is 1366*768. But the customer requirement is to have 1920×1080 resolution. Is it possible to develop the mashups in 1920×1080 resolution in ThingWorx? Please provide us some idea as we are doing this as a priority task. Thanks, Shalini V.
Hi all, Where I could get this mashup? Thanks
This solution is working fine in case the use tries to navigate to another page after timeout but if the user tries to navigate using sub menu for example , I get a popup with the HTML code of the login page (check attached screenshot) I think that's because switching submenu mashup happens using ajax/javascript , so redirection is sent back from authenticator but it is not handled by mashup, any solution in this case ?
Hi, Is it possible to change the color of led / value display to red for just 5 seconds when changed from one value to another value and after 5 seconds turn it back to black? How can I achieve this in ThingWorx 8.2? Thanks in advance, Shalini v.
I'm having trouble getting Data Filter Widget to work with Advanced grid when Column Sorting is enabled. I tried passing the query from the Data Filter Widget to the Advanced Grid and then from there to the QueryDataTableEntries Service. The Data Filter works but when I uncheck filters the displayed data does not change. Included video for clarity.
I create a Organization Login Form as : http://support.ptc.com/cs/help/thingworx_hc/thingworx_6.0_hc/index.jspx?id=thingworx060503&action=show But when i try to access the link i get the folowing error. Anyone knows this error?
I have a stream that I would like to purge of any data which is older than 7 days old. My thought is to attempt something like this (below), where my startDate is undefined and my endDate equals seven days ago (DateTime format). Things["MY_STREAM"].PurgeStreamEntries({endDate: sevenDaysAgo,immediate: true,startDate: undefined}); Will this work? I'm worried that if the startDate is undefined, it'll start from the newest entry of the stream, rather than the oldest entry. TWX v. 8.4.1
I want to import my custom build model using python into thingworx analytics . Please advise , is it possible to import python code into thingworx analytics , if yes, please share the document for the same.
Hi,I wanted to give a popup message on clicking a button.I dont want to give it using navigation button.Instance: I am using a save button which saves the report.Here,On clicking the save button i wanted to display a pop up which says "saved successfully".How can I make it possible?Thanks,V.Shalini.
Does the toFixed() method not work in thingworx?
How would one go about specifying a DataShape name for an Infotable property defined in the MashupGlobalPropertyBinding property of a Collection Widget? It's required to specify a DataShape name for the mashup property in order to be able to bind it to an EventsRouter widget input.
Hi All, I have a query regarding how to add values to a scrollable panel so that every 10 seconds it should display the updated values corresponding to a label. I will attach the screenshot for a better understanding of the query. I want a use case where, Temp1(label) corresponds to 26 (value) After 10s, Temp2 (label) corresponds to 18 (value) After 10s, Temp 3 (label) corresponds to 5 (value) and so on. The panel has to be updated automatically after the specified time interval. Kindly provide a solution if the query is clear. Thanks in Advance. Regards, Airin
I am needing to combine two Info-tables and display certain information from those on another info-table. I keep getting the error "Error executing service GetSalesOrderPartStyleProduct. Message :: Unable to Execute Union: Field [Customer] was not found in both infotables - See Script Error Log for more details." I understand what it means but cannot figure out where I am going wrong in my code. I created my service which has an info-table output. My thought was switching "Union" to "Join" var params = { infoTableName : "InfoTable", dataShapeName : "TrainingDataShape_COB" }; // CreateInfoTableFromDataShape(infoTableName:STRING("InfoTable"), dataShapeName:STRING):INFOTABLE(TrainingDataShape_COB) var myInfoTable = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params); //// result: Two info tables given var itPartInfo = Things["Training.InfoTable.PartInfo"].GetDataTableEntries(params); var itOrderInfo = Things["Training.InfoTable.OrderInfo"].GetDataTableEntries(par
Hello everyone, I am using Value stream on ThingWorx Server and sending PUT requests (using REST API) setting the properties values and eventually visualizing the changes using mashups. This feature works well when I change the properties value manually from the ThingWorx server, as it is mentioned in this training. However, when I send the PUT requests using Postman client or Python scripts with REST API, the properties values get updated successfully but the value changes can not be seen with the QueryPropertyHistory Service. It should be also noted that for sending the PUT request with Postman and Python scripts, I should send the request multiple times. In the first efforts I get the error message "500 Internal Server Error" before the request sent successfully getting the message "200 OK". Please refer to the attachments for python script and a screenshot from Postman client. Just before sending this post, I used the suggested Restlet Client sending
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.