Recently active
Hello All, We have configured Thingworx8.3.3 with Pingfederate for SSO experience and TW developer is able to access TW composer with SSO but when developer is trying to access any entities, developer is getting an error "You do not have permission to view" . How to move users into TW Administrators group when Thingworx composer running with SSO. We are using the components for PoC Thingworx server Pingfederate as Central Auth Server Enterprise identity provider (IdP) - LDAP Not sure where am missing configuration step. Need help. Thanks in advance.
I using autorefresh widget to refresh specific services at every 6 minutes. Widget is working fine only if i access the same window, if i access any other window widget is not working then again it calculating 6minutes from that time. For example : If i access mashup page for 6+ minutes widget is working fine and If i moved to other page at 5th minute or any other minute then it is not refreshing the data then it calculating time from first second to trigger the autorefresh. Is there any other way to trigger the service for every 6 minutes. Thanks.
Hi , I am trying to create dynamic alerts , it is working for "Above" , "Below" , "Equal To" etc. but the same logic is not working for "in Range" and "Out Range". I am using below code : var params = {infoTableName: "alertAttr" /* STRING */};var attrs = Resources["InfoTableFunctions"].CreateInfoTable(params); var field = new Object(); field.name = "minimum";field.baseType = 'NUMBER';attrs.AddField(field); field.name = "minimumInclusive";field.baseType = 'BOOLEAN';attrs.AddField(field); field.name = "maximum";field.baseType = 'NUMBER';attrs.AddField(field); field.name = "maximumInclusive";field.baseType = 'BOOLEAN';attrs.AddField(field); var row = new Object(); row.minimum = MinValue; row.minimumInclusive = true; row.maximum = MaxValue; row.maximumInclusive = true; attrs.AddRow(row); Things[thingName].AddOrUpdateAlert({alertType: DeviationType /* STRING */,alertName: AlertName /* STRING */,property: Property /* STRING */,description: undefined /* STRING */,attributes: attrs /* INFOTABL
I am getting following error in foundation-20201014070146.log file. [2020-10-14T07:03:12-07:00] WARN: Mode 640 includes bits for the owner, but owner is not specified [2020-10-14T07:03:12-07:00] WARN: Mode 640 includes bits for the group, but group is not specified [2020-10-14T07:03:12-07:00] INFO: template[platform-settings] sending run action to execute[change_owner_twx] (delayed) [2020-10-14T07:03:12-07:00] INFO: Processing execute[change_owner_twx] action run (twx_foundation::install line 158) [2020-10-14T07:03:12-07:00] ERROR: Running exception handlers [2020-10-14T07:03:12-07:00] ERROR: Exception handlers complete [2020-10-14T07:03:12-07:00] FATAL: Stacktrace dumped to c:/progra~2/thingw~1/installer/foundation/local-mode-cache/cache/chef-stacktrace.out [2020-10-14T07:03:12-07:00] FATAL: Please provide the contents of the stacktrace.out file if you file a bug report [2020-10-14T07:03:12-07:00] FATAL: Mixlib::ShellOut::ShellCommandFailed: twx_keystore_secret[encrypt_db_passwor
Hi, i'm trying to import entities from a file and i get this error: com.thingworx.common.exceptions.InvalidRequestException: The User being set to the 'Run As User' value is invalid. Cannot proceed with changes. Thank you.
Hi, Can anyone tell me how to add or insert row in data shape(info-table) by using advance grid in mashup?
hii, i want to show multiple videos by using file upload widget from my own system like we upload the image, is it possible? if yes then please share the process for the same
Hi, We have connected ThingWorx to 100 equipments in PLC. ThingWorx is reading almost 3000 tags. We wanted to constantly monitor the tags so thinking about using the Timer entitiy. But if we put the timer for 30 seconds timer to monitor all the 3000 tags how will the performance of ThingWorx be affected? Is it advisable to add timer for mass data collection like this? If the system creashes where will the data be logged? Thanks & Regards, Shalini V.
Hi, I've exported a project from TWX 8.5.4 to 9.0.2 which is working fine so far. But there is one issue: I can't figure out how to bind the "Changed"-Event from a session variable in TWX 9. There is simply no menu to do it. I've attached two screenshot from 8.5.4 and 9.0.2 where you see that the event "ToggleVarChanged" show up when you click on the session variable in the "Session" tab. Since 9.0.0 this isn't the case anymore and I don't see another option. The binding itself (created in 8.5) is still working in 9.0 and is shown in the mashup builder. So... any ideas where to look for it?
Hi, I create a native javascript function to convert a infotable to a key-object holder: ================ function infoTableToKeyHolder(infoTable, keyField){ let holder = {}; for(let i = 0 ; i < infoTalbe.length; i++){ let item = infoTable[i]; let keyValue = infoTable[keyField]; holder[keyValue] = item; return holder }} ================= How to share the function for any JavaScript service ? Regards, Sean
Hi All, I have seen some logs in Thingworx Related to Blacklisted words. Can anyone tell me what are those blacklisted words or Thingworx is only checking the Length of the Password? Thanks for your response.
I see an extra space after widget migration for tab widget...Please check belowscreenshots. After migration Before migration. Please resolve the issue asap
I have a problem styling the list widget in TWX 9.0.2. As seen in the attachement I set the base color/background to green, hover to grey and selected to blue. But the base text color seems to be overwritten by the hover color. Is this a bug or am I missing something in the settings?
Hi Team, I am trying to use Style Themes to set style to my button. There are multiple button styles defined in my style theme like for primary button, secondary button, Transparent button. How can I use a specific style like secondary button style to my button ? Thanks and Regards @nmilleson , @krishnakomal
Is it possible to send dynamic data to Generic radio button widget though an infotable service?
I use a 24" fullhd screen, but seems limited in particular when working with mashups. with previous composer (8.3) it was quite enough, but now with the new composer (TW 8.5) more size seems required. I need sometimes to zoom-out with the browser Is it better a 4k screen on a 27 inch ? What do you use ? Regards
How do I set selected and hover styles for list items without using style theme in Thingworx 8.5.2
Hello, this is my first post here so I hope I am posting in the correct location. I'm having some issues with figuring out how to do joins and other filter functions on the Thingworx platform. But I think I am getting the hang of it, at least a little bit. I am having some issues with while doing an INNER join on two tables from the Operator Advisor addition to TWX. in the output from my service I get both of the tables "mashed" together. I'll add an attachment to illustrate this. I think I am getting the join and filter correct, but I am not sure. Here's that code: var filter = {"filters": {"filters": [{"dataShapeName": "PTC.SCA.SCO.JobOrderProcessingResourceRequirement","fieldName": "ProcessingResourceUID","type": "EQ","value": ProcessingResourceUID}],"type": "AND"},"joins": [{"type": "INNER","sourceDataShapeName": "PTC.SCA.SCO.JobOrderProcessingResourceRequirement","sourceFieldName": "JobOrderUID","targetDataShapeName": "PTC.SCA.SCO.JobOrder","targetField
Hello, I am using collection widget ,I want to pass id through checkbox with checking multiple rows checkbox Please refer below attachment and suggest How to used checkbox with collection widget and How to pass value??
Hello, let's say I have a DataStream where I collect temperature and Humidity values from different sensors(=sources). Each sensor send data every 15 seconds, and sensors are asynchronous. The aim is to write a service in the DataStream (right table below)in order to have as output an infotable (colored left table below)which will be connected as entry to a timeSeriesChart that draws each temperature curves: I've succeeded in sorting and then pivoting the temperature values (table in the middle) but I want to sort every source column with the corresponding ascending timestamp (as I want to draw continuous curves, I need continuous rows for a given source without null values in the middle). Are there "advanced" sorting or joining techniques to achieve this?
Hi, On mashup loading we are calling almost 5 services which are mandatory and 5 - 7 services which is been called in the service invoke completed of those services loaded in mashup. And its taking almost 12 seconds to load a page which upsets the customer. Is there any way to make the mashup load quicker like just in 2 seconds? Please provide some idea. Thanks in advance, Shalini V.
Hi Techies, Can anyone please share SSH Extension and Terminal Widget zip file? Thanks in advance! - Shirish
We are rolling out Thingworx Navigate app which will be used by pretty larger user base. We need to have some folks to go into Thingworx platform doing very specific tasks like managing users and user groups. What is the best practices for such admin group for Thingworx Platform. I do not see any out of the box group where we can be leveraged. thanks, Preeti
Hi everyone, My environment: Thingworx 8.5 I'm using the Time Series Chart V2 - Custom Chart 3.0.3 from Marketplace. This is my designe from composer: This is my runtime: They are able to observe that the Time Series Chart Widget does not obeying the responsiveness. **All my containers are responsives. Is there any code CSS that I can put to do this? Regards, Leonardo
Hello! I am running into some strange behavior after copy and pasting a widget from one part of a mashup to another. After duplicating I re made the bindings and confirmed they connect to the same entities. Is there anything else that doesn't copy over that I need to update? The widget is a dropdown, in the picture I have the working original and not working duplicate side by side.
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.