Recently active
Hi All ! I'd like to ask if you can help me solving my problem.(Thingworx 9.3) I have a Grid where the user can edit data. Data is saved to MS SQL database upon SAVE button. I want the users to use their login name and password for performing the save action, -> the concept would be a pop-up window to confirm the save,-> only if passsword matches the username, the data is saved to the database, otherwise it would notify user for invalid password and he can try again. -> by cancelling the signature process or closing the pop-up window, the save must not happen. Could you please advise how to make such "electornic signing" proccess ? Any advise on how to do such logic is greatly appreciated ! I've already made a mushup for signature purpuse , but cannot figure out how to pass/bind the "result" of the password validation from the pop-up mashup back to the mashup which triggered the pop-up.
Hi everyone, My question is suppose we have an Infotable like the below one. Now what I want is filter these data based on Gender and School Requirement: Like we have two dropdown in the mashup UI one for Gender and another for School now if user Select any of the dropdown data should be filtered in the grid according to selection in the dropdown please let me know how can I configure it in Thingworx 8.5 version If Possible please share the exact solution please share binding as well Best Regards, Rayon.
Hi everyone.I need to display in the same chart two data series. The common X-axis will be time of the entry and one Y-axis will display data using Bar-Chart, the second Y-axis will display data using Line-Chart. As you can understand, they should overlap in the same widget.We currently using Thingworx 9.3 and after I read article CS323245 I learned that only Label Chart is capable to do it.Our production team is concerned about it usage since its already marked as 'Legacy', and would probably cause troubles if we decide to update TW to next version.Is there any default/well maintained alternatives we can use?Thanks.Illya.
I need to get a 2D matrix barcode data from a PLC and split them into date, time, part number, cavity number, etc. and then save them into the database. Is it possible to do so?
I am trying to connect an external database from Trumpf Trutops Boost to Thingworx? Has anyone tried this and were successful? I am using Thingworx 9.3.9 and Trutops Boost 15.06.22.71
Hi all I got the following error while installing thingworx on ubuntu-linux-20-04-desktop aarch64.Can I install Thingwork on the arch64 CPU? TomcatLog13:41:40,036 |-INFO in ch.qos.logback.core.rolling.RollingFileAppender[AUTH] - File property is set to [/ext001/data001/ThingworxStorage/logs/AuthLog.log]/ext001/engn001/tomcat9.0/9.0.52/webapps/Thingworx/WEB-INF/extensions/libFlxCore64.so.2016.08: /ext001/engn001/tomcat9.0/9.0.52/webapps/Thingworx/WEB-INF/extensions/libFlxCore64.so.2016.08: cannot open shared object file: No such file or directory (Possible cause: can't load AMD 64-bit .so on a AARCH64-bit platform) ErrorLog2022-03-09 13:02:52.497+0000 [L: ERROR] [O: E.c.q.l.c.Logger] [I: ] [U: SuperUser] [S: ] [P: ] [T: main] **********LICENSING ERROR ANALYSIS2022-03-09 13:02:52.497+0000 [L: ERROR] [O: E.c.q.l.c.Logger] [I: ] [U: SuperUser] [S: ] [P: ] [T: main] Flex licensing file found: /ext001/engn001/tomcat9.0/9.0.52/webapps/Thingworx/WEB-INF/extensions/libFlxCore.so.
Hi @TanmeyTWX , I'm pretty new to thingworx, I came across this post while searching for the ptc-grid edit, previously by using the legacy grid widget it was pretty easy to use the grid, after upgrading to the new widget finding very much difficult to get the edit cell values(text, number, boolean or any type) I'm able to get only single row from the EditedData property of the ptc-grid. If possible can you put your listings to know how you have achieved the edit options. Thank You, Balu
There is use case, where Line chart need to be populated based on the INFOTABLE output only, without any Datashape, as known, Without Datashape DataFields in the Line chart can't be selected and data will not be visible on the Mashup. is there any way, where datashape is not required to populate the data in the Line chart ?Thingworx version: 9.3 @c_lowy @slangley @CarlesColl @paic @VladimirN Thanks,Shashi.
Hello community, While doing tests on creating/deleting projects, I am trying to use the following function: let url = '.../Thingworx/' + entity.type + "s/" + entity.name var params = { headers: { "appKey": appKey, "Content-type": "application/json", "Accept": "application/json" } /* JSON */ , url: url /* STRING */ }; Resources["ContentLoaderFunctions"].Delete(params) For some reason though it is SUPER slow (and seems to be causing me to not be able to delete entities manually in the composer at the same time). I do get the following error in my ScriptLog: JavaException: java.net.SocketTimeoutException: Read timed out Eventually though, the entities are deleted and I can see this in the "ConfigurationLog": Which confirms that the "Administrator" (user used for the AppKey during tests) had deleted the entities. But what could be the reason for the time out issue? Thanks, Jens C.
We have hosted Thingworx 8.5.1 in our local.We need upgrade to Thingworx 9.4.x. It is having multiple applications and data.Is that possible to host two thingworx instance (Installer and Manual) in same server?
Hi. I am trying a couple of ways to give the user a way to download the files in the below path: file://storagex/folder1/folder2/folder/xyx/pdfBelow are the ways I have tried:1. Link Widget(given path in the URL). didn't work 2. The Navigation function, given the path in the URL of the function, didn't work. 3. href, windows.open() of HTML/CSS, it didn't workDoes anyone have a way to do this? Thanks,
Hi,I want to figure out if there are any built in functions or scripts or flags that are being triggered when I stop the ongoing production in DPM Dashboard.I want to write a script in which when ever we will stop the production I want to change the production count to a static value in the dashboard. So for that I was checking if we could see any services being called or function being called so that I could make appropriate changes.
Would Thingworx have any functions or information about cybersecurity protocols, documentation, general infrastructure? Translated by the Community Moderation using Google Translate O Thingworx teria alguma função ou informação sobre segurança cibernética protocolos, documentação, infra geral ?
Hi Experts, Does thingworx supports video analytics capability from a live feed from CCTV camera to capture operator actions ?Any supporting document would be really helpful. Br,Krishna
I am trying to set a value of a property using SETPROPERTYVTQ by writing code in the service of my thing. I will an API and after the response of the API i will set the value of a particular property. Here is the code I am using:VTQ vtq = new VTQ();vtq.setValue(String(events[4].machineCode));vtq.setTime(new DateTime());vtq.setQuality(QualityStatus.GOOD);base.setPropertyVTQ(me.ReasonCode, vtq,true);While executing the code I am getting the error as: Message :: ReferenceError: "VTQ" is not defined. - See Script Error Log for more details.
Hello community. I am facing some issues due to service timeout of my service that copies and builds a user usable mashup for connecting kepware tags to things. The service reads each root tag from an industrial connection and then calls a recursive function to go deeper in the tree. The issue we have for one of our sites though is that they have an older PLC where they apparently can't decide on which tags should be imported, so they have to import all of them (100k+). Now, we could increase the timeout from 500 seconds, but I don't see it as a viable solution as what if we get 200k+ tags at some point? The thing is, they have used some disable setting in Kepware for these tags. So they had thought that they would not end up in Thingworx. Is there anyway to prevent this? Either in Kepware or in Thingworx? I tried running the BrowseGroups service on my industrial connection, but there doesn't seem to be anything in the result that we can
How to apply custom css on disabled checkbox colorI am not able to change the grey checkbox color using custom css
Hi Team, On mashup load, how to select all values by default from dropdown? and all selected hint text also need to showPlease let me know asap. Thanks
I'm developing an application using ThingWorx 9.4.0. I used the "Package" feature of my Project entity to create a .zip file. When trying to import into my package as an Extension into our Test/QA platform, I'm getting the following error (redacted bits in <>).Application Log: Extension Exception: Error parsing /files/ThingworxStorage/extensions/temp/<ProjectName>-1.1.0_<GUID>/<ProjectName>-1.1.0/Entities/ThingShapes/Entities.xml: (88, 37): cvc-complex-type.3.2.2: Attribute 'aspect.isDistributed' is not allowed to appear in element 'Subscription'. Our Test platform is a HA cluster implementation, so it doesn't make any sense why the project is failing with the error "isDistributed is not allowed". I verified that it wasn't a problem with this single project by creating a separate test project with a simple subscription and trying to import it to my Test system. I got the same error.Is this a bug in the platform
Hi, I placed a Bar widget on the mashup, passing the data to the Widget. On Runtime, I can only see the X-Labels for the alternative bar, not all the Bars. Why so? Thingworx Version: 9.2.1 Thanks,
Hi, I am using Style Theme for around 50 Mashups, but suddenly labels, font weight and family are not working.When I open the Mashup in the runtime, in the console, I see the below errors: Thanks,
Hi, I have a mashup that contains a grid that collects data stored in an infotable property. While testing with multiple users we noticed that while one user viewed the mashup the data loads just fine. However when a more users try to access the same mashup, the "first" user's grid will appear with no data while the second user is waiting for mashup to load. Once the second mashup completes, the first mashup will again display data however this data belongs to the second mashup. Is there a way to ensure that the data in a grid does not refresh if another browser is opened to the same mashup?TIA
Hello, I'm trying, from a service, to run this code: The error message I receive is: "Unable To Convert From org.mozilla.javascript.UniqueTag to INFOTABLE". Regards,Lav.
Do we need to install Manufacturing common building blocks before importing solution framework.I can see pre-requisite as PTC Solutions Common Building Blocks must be installed prior to installing the Solution FrameworkCan anybody clarify whether common building block is 'mfg1-2' extension
Hi all, I am using Thingworx 9.1 version. when I tried to launch Thingworx composer it throws an error.... "This page isn’t working If the problem continues, contact the site owner. HTTP ERROR 401". I am using Microsoft Edge Version 117.0.20 having edge policy and if I need to change this AuthSchemes policy how can I change it.? Regards, Lav
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.