Recently active
Hello community! I have included a simple video stream into a mashup via the thingworx web frame. Unfortunately, the stream does not scale with the size of the widget, but is integrated in its full resolution (fullHD). The web frame compensates this via scroll bars. So you can't see the full video and the scrollbars doesn't look nice either.Is there any possibility to scale the video for example via custom css? Is it even possible to make this responsive? Also, I have positioned the camera of the stream upside down. Is there any way to rotate the video stream? I'm looking forward to your answers, because I can't get further. And as I have seen in other threads, here are some pros on the go. 😉 Thanks a lot! Chris
We are using the FileUpload widget in which the MaximumFileSize property value is set to 2000MB. When the file size goes beyond this a status message is displayed at runtime.In this message an error code is embedded which we want to hide. The status message is as below:ABC is larger than the maximum allowed, 2000MB We want to hide &#44 from this message.If anyone knows how to do it please help. We are using ThingWorx 8.5.4-b222.
Hello, i have the following Line Chart and would like to custom the hover value to only show "Value & ShortDate". So example "SP: 45, 11:52AM, 03/28/2022" or something like that.
MSSql Database is installed and configured. Now not able to proceed furthur while installing ThingWorx-Foundation-Installer-mssql-windows-9-2-8. What is the issue here ? I referred this article also support.ptc.com/help/thingworx/platform/r9/en/index.html#page/ThingWorx/Help/Composer/DataStorage/PersistenceProviders/mssql_database_setup_for_thingworx_windows.html
Adding filters to the Datashape Query, how should it be done ?As of now I am using following code.. var queryToAvoidPowderMixTables = { "filters":{ "type": "NE", "fieldName": "Source", "value": "Powder_Mix" } }; var params = { filter: filter, dataShapeName: "PTC.SCA.SCO.MaterialDefinition", offset: offset, limit: limit, query: queryToAvoidPowderMixTables }; var MaterialDefinitions = Things["PTC.SCA.SCO.PostgresDatabase"].Query(params); MaterialDefinitions.Sort({ name: "UID", ascending: false }); but the query for "Power_Mix" is not working..Thanks,Shashi.
Hi everyone, How I can change the size dimensions on Toogle Button? I have tried giving the toggle button the custom class slider-checkbox, but that didn't work. .slider-checkbox { width: 79px!important; height: 52px!important; } Has anyone found the CSS solution for this? Thank you!
I'm attempting to produce a Fibonacci series of initial ten elements utilizing recursion. However, the compiler gives an error. Kindly assist me with tracking down the specific arrangement. The program is given below:public class DemoJava { int a=0, b=1, c=0, count=10; public void fibonacciRecursion(count) { if(count>0){ c = a+b; a = b; b = c; System.out.println(c); fibonacciRecursion(count-1); } } public static void main(String args[]){ System.out.println("This is a Demo Program."); System.out.println(a); System.out.println(b); DemoJava dj = new DemoJava(); dj.fibonacciRecursion((count-2)); } }I have also read a couple of resources on the fibonacci series on the wiki, scaler and Quora to understand the topic in a better way. kindly help!
How to show "No Data" like this in advanced grid widget? Kindly refer the attached image.
Hi, When clicking the button, there is the blue border. I need that blue border to be removed. Note: The mashup has a container and valuedisplay Thanks
Hi, Requirement :Need to get mashup parameters as string from url on runtime (for the dynamic implementation of breadcrumb on Master mashup)ThingWorx doesn't support location.search() to get URL parameters.Mashups[<mashupName>].GetParameters() provides only the definition of mashup parameter.Is there any other way to get mashup parameter on runtime without binding each parameter separately in each and every mashup? Or Is there a widget that allow window.location.search() functionality in ThingWorx (Ex: link ) . Thank you,Ashritha
couldn't find the docker file packages for thingworx flow 9.3.3 docker installation.Any change for the flow docker installation ?
Hello everyone, I want to use the file upload widget on a tablet. Specifically, users need to upload MULTIPLE images via the "Take Photo or Video" option that opens up the camera app. But here two issues arise: 1. I have enabled "MultiFilesSelect". Uploading multiple picture via Files and Photo Library works. But when selecting "Take Photo or Video", you can only take one picture. 2. All images uploaded via "Take Photo or Video" are named "image.jpg". So even if I were to put multiple upload widgets, I would have to invoke a service to rename the files multiple times? Can anyone think of a solution? Putting 5 upload widgets in the mashup where each time the user has to also press "upload" is super user-unfriendly.
Can we use SQl query in JS code of ThingWorx to fetch data directly from PostgreSQL DB? If yes, How to do that ?
advanced grid is having rows and columns. We have datachange event of a row. But on clicking a particular cell, can we pass that cell's value ??
While the service is loading Bar chart is showing the word "error" in the place of xaxis values. Once the service passed output to the xaxis values of bar chart, the word "error" is replaced with the xaxis values. The word error should not be displayed at all. How to fix this ?
How can we implement cascading dropdown functionality in ThingWorx.I am binding my first dropdown item from infotable, my second dropdown should fill based on selection of my first dropdown.shall we need to create a service which will take the o/p of first dropdown selection item, and it should go as service i/p for second dropdown ?Thanks.
Could anybody let me in on the most proficient method to make custom widgets in thingworx. I have no clue about how to make a custom widget. Please help me. Thanks in Advance
Error message is "Connection to ThingWorx failed. Platform = 168.131.31.193:80/Thingworx/WS, error = could not initialize a secure socket connection." In thin situation, What can i do? And, I want to know whether data is connected to kepware or not. When I see Channel1.Device1._System, I think data is incoming to kepware but value don't change. And, when I see JNU_ENV_SVR.GW01, all value is 0. I don't know this is connecting to kepserver well.
Can someone suggest How to export a prescriptive model in python? Thanks in advance!
Good day community. I have three templates, each containing different things.I want to display the things inside of each template one at a time. I am using the tab-set widget since I want to navigate through the different templates. However I am struggling to display below the things contained in each of my template. I have tried binding values to the value and label widget property. Also I tried to write a service that outputs the things depending on the selected tabs.Please see below: if(SelectedTab === "Laptops"){var result = ThingTemplates["LaptopsTT"].GetImplementingThings();}if(SelectedTab === "Houses"){var result=ThingTemplates["HousesTT"].GetImplementingThings();}else{var result= ThingTemplates["CarsTT"].GetImplementingThings();} How do I go about this?suggestions will really be appreciated
Hi, Please share the path from where we can download the ConnectionServicesExtension-2.2.4.zip extension file or the latest one compatible with TWX 9.3. Thanks in advance
I am creating an app that reads bit values from an opc and calculates an state based on which ones are active. Problem is sometimes they change in pairs at the same time and the subscription that is listening to that runs twice and gives two simultaneous results. Is there any way to make the service wait untils it's finished before running again? It is currently written in java using the thingworx extension library and it's already synchronous. Thank you
I am trying to update DB thing configuration parameters using services (SetConfigurationTable). JDBD Driver Class name Connection String DB user name DB password Everything working fine. But, if i am trying to give some random value to 'JDBD Driver Class name' (Ex. com.yourdatabase.yourDriver) and getting an error "ERROR starting: JDBC Driver Class Not Found: com.yourdatabase.yourDriver". Also DB thing stopped running. It can be resolved by opening DB thing and Click Save. How to avoid this issue? How to start Thing programmatically if Thing is not running? - RestartThing() not working How to validate 'JDBD Driver Class name' in Thingworx?
Hi EveryOne, Whether any limitation there to use number of containers in a mashup? If yes what is the limit. If no such limit What may be reason of loading UI itself slower. It makes delay of loading media in UI. The image size is also 917 bytes only. Nearly 100 container, 25 images, 50 labels, 50 buttons will be there in mashup. Thanks,MC
I want to create a hierarchy structure, i have all the data in infotable, is it possible to bind an infotable to tree widget in ThingWorx. Which services we need to user for this activity.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.