Recently active
Hi I'm using grid for entering numeric data. but when I switch my keyboard to polish then while entering data on grid using numpad of keyboard I get comma instead of dot which my grid does not take. I have set column rendering as number with column format 0.0000. Please help with this issue
Hi, We are currently trying to display our ThingWorx mashup alongside with other web pages by using web rotator in HTML. The ThingWorx mashup URL with appkey works without having to log in when we click on the URL, but if we put it through the HTML code for web rotator, it asks for log in and even if we log in , it refuses to connect. Are there anything blocked in ThingWorx platform setting or are there other solutions on how to fix this? Thanks Sai
I'm unable to get a validator for dropdown widget to work. The validator is supposed to check if a selection was made from a dropdown widget. I've tried the following in the validator but it still goes through. How can I get this validator to work? The validator input is bound to Selected Row of the service that populates the dropdown. (Type !== "") && (Type !== null); //(Type == "New Functionality") || (Type == "Bug Report") || (Type == "Other");
Hello,Is there any extension available for integrating the FIIX with ThingWorx?There is a link in Vimeo: https://vimeo.com/683618643, in this video there is an extension present, is this available to download anywhere?Thanks,
Hello,The stateDefinition object that I gave the advanced grid is not doing what I want it to do. State Definition:"stateDefinition": {"fieldName": "example","name": "example_alarm","type": "non-fixed","states": [{"comparator": "<","name": "min_value","styleName": LowStyle","value": "10"},{"comparator": ">","name": "max_value","styleName": "HighStyle","value": "100"}]} I am using the exact same layout for the string type columns of my grid and it behaves the way I want it to, since I am using the "==" comparator.However for my number type columns, I am not getting the range that I want. The outcome is as if the comparator was "==". Now I realised that the value I gave it was a string, so I changed it to: "stateDefinition": {"fieldName": "example","name": "example_alarm","type": "non-fixed","states": [{"comparator": "<","name": "min_value","styleName": LowStyle","value": 10},{"comparator": ">","name": "max_value","styleName": "HighStyle","value": 100
Hi, For the button, we do have the following CSS for the blue border issue ptcs-focus-overlay { visibility: hidden; } .ptcs-wrapper:not([no-wc-style]):focus:not(.dummy):not(.dummy):not(.dummy) { box-shadow: none; } Article: Article - CS328986 - Is it possible to remove the blue border around widgets when selecting them at runtime in ThingWorx (ptc.com)Even after changing the Colors in the Style Properties in the TextField, the blue color still exists.How can this be resolved for the TextField widget?Thingworx version: TWX 9.3.0 Thanks,
Would like to generate a report based on the inputs from different sensors and then send this report as an email attachment.
Dear Team,For Live Prod Environment Energy Project, we are fetching hourly data to ThingWorx from Kepware and found that whenever there is Bad Error in Source Column (Thumbs Down) in ThingWorx we are getting previous hour values, rather than Live Hourly values for that hour. This affecting data quality of storage in SQL severely, where previously hour values get repeated. Attaching a screenshot for your reference. -
hi I am using kepware to retrieve information from 20 mitsubishi plcs fx3u on ethernet channel. At the moment i have only 1 channel and 20 devices configured inside but i am wondering if this is the best approach if 1 of the PLCs fails and it might choke whole channel communication. Would it not be better to use 20 identical channels with only 1 devices in each? what would be the pros and cons of either solution? Which would be better solution from robustness point of view. Best Regards
Hi,I want to show the data loading symbol when I refresh the mashup from the refresh requested. I'm using the Expression to show value. Please respond if you have any solutions. Thanks
Where do you set user name? I can set password.
How to customize Thingworx URL example (https://thingworx)? Is it possible to go without using port in URL? thanks Keerthivarman.
Hi , I am looking to Collapse a container in twx upto specific width , Is it possible in TWX 9.3.0?
Inside Mitsubishi M80 CNC controller, one Q series PLC is used.Inside Mitsubishi M70 CNC controller, one QnA series PLC is used. Then I setup Kepware configuration and PLC program under the help of Mitsubishi Ethernet Driver Help, there have some contents about Q and QnA series PLC, but I can't connect to M80 and M70 controller successfully. So I want to confirm if Mitsubishi M80 and M70 CNC controller can integrate with Kepware directly?
Hello, is it possible, to set the script timeout per service?I know, that the script timeout can be set globally per server.But we have just one long running service, which runs into a timeout and we want to avoid to increase the system script timeout as there are other applications running on that server and we don't want to extend their timeout too. Thanks!
My MAshups are getting data from windchill and for loading the data it is taking around 5- 10 mins which is not at all acceptable by customers. even though for min 10 objects from windchill it will take around 2- 4 mins. so I want to improve the speed of loading data and loading of mashups and kind of performance of my application. please help me out in this. ThanksKSM
Hello everybody, is there a way how I can use complex parameters (INFOTABLE or JSON) for SQL Query/Commands? Normally i need to add all columns I need as parameter. For large tables with many columns this can be really annoying. In the script I can use "<< >>" or "[[ ]]" to substitute parameters, but how can I do it, when the parameter is a JSON? e.g.: entry = { "id": 1, "val": "Hello" }. Every try of an SQL script trying to access "entry.val" does not work for me ... Greetings Andreas
I am facing a problem in the Export file . Where the CSV export file generated from the Query property history service using Export Widget gives DATE TIME in UTC , which is 5:30 Hours behind IST. When visualized in Mashup by using grid, the DATE & TIME is in IST . Please find the screenshots for reference.
Hi ,How to do this in TWX 9.3.0? Is it possible in Tabset? Thanks,
Hi everyone,I'm trying to install Thingworx analytics Server on my machine, but I'm having problems in the process.Note:-I'm installing Analytics Server with admin permissions-I have enabled TLS for Analytics Microservices by adding TLS Keystore File-I have TLS enabled for Zookeeper with truststore fileWhen I get to the Thingworx Connection Information window I get this error.
Hi friends! I have a question/doubt about IoT Gateway's REST Client: How can I make a GET request from REST Client in order to retrieve some data from an external API (e.g. Weather, web application, etc)?. As you know, it only supports PUT & POST method and it's fine but what about if I want to connect to Google Maps, Open Trivia or AccuWeather and retrieve/handle some values?? Even, I have a Google sheet's script deployed as web application listening external calls to log data in my sheet and I just need a simple GET request to achieve it but I can't find a way to do it from IoT Gateway module. My URL to get this is: "https://script.google.com/macros/s/ SCRIPT_ID/exec?temp1=1234&level=122&pressure=88" What would be the procedure or module to achieve it? Thanks in advance for your prompt reply and help, Saludos!
I'm facing some problems when trying to use an infoTable in my extension.The service is a utility service that is static: public static void myService(Context cx, Scriptable me, Object[] args, Function func) throws Exception { InfoTable iTable= (InfoTable) args[0]; ... in the metaData: <FunctionDefinition description="" name="myService <ParameterDefinitions> <FieldDefinition baseType="INFOTABLE" aspect.dataShape="keysShape" aspect.isEntityDataShape="true" description="the key names" name="keys" ordinal="0" /> </ParameterDefinitions> <ResultType baseType="NOTHING" name="result" ordinal="0" /> </FunctionDefinition> The call from the javascript; let keys= Resources["InfoTableFunctions"].CreateInfoTableFromDataShape({ infoTableName: "InfoTable", dataShapeName: "keysShape" }); keys.AddRow({key:"a string"}); myService(keys); The problem if at this line:InfoTable iTab
Hello, Line charts cannot be displayed in the mashup with respect to date and time even if it is designed according to PTC guide as a reference. Below is the example to display the temperature with respect to present date and time and how it is binded with and the result after saving the mashup is displayed as an error in the next image •The Date/Time Property is not considering the Present date time and year , even if we set the Property to the today’s date and save it and once if we refresh the page by default it will take it as 1970 /01/01 . IT is shown in the below image please help to get the proper line chart with respect to time and date.
Hello, I'd really like to find out if Kepware can receive JSON data resulting from a JSON post. Thank you
I'm currently testing KEPServerEX 6 in a highly Mitsubishi Focused facility. We have many Mitsubishi PLC's but only six are on a ethernet network and are considered "Masters." The majority of the Masters are connected to other Mitsubishi PLC's via CC-Link IE-Field. I have been able to connect to one of the Master PLC's and create tags, data log to sql, etc. I am trying now to pull data (X's and D's) directly from a PLC on the the CC-Link IE-Field network. For example in the attached picture i'm trying to connect to W/S Station 8. In the Mitsubishi driver I have the ID set to 10.25.0.130:N1:8. The I.P. is the Built in Ethernet Port I.P. on the Master PLC which I can connect to just fine. Then N is Network 1 which is a CC-Link IE-Field Master Card on the Master PLC rack and 8 is Station 8 on the CC-Link IE-FIield. When I try to monitor those the tags in Quick Client I get this error.Date Time Level Source Event1/30/2023 12:32:29 PM Error Mitsubishi Ethernet Mitsubishi Q Series.Wast
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.