Recently active
Hi everyone,I want to create a dashboard that shows the statistic of unique visitors visit and the duration of it on certain Mashup. Do you have any idea to implement this? What I have in mind is:> Creating a database that records the visitors name and current time and everytime a mashup is opened> And also record the current time when a mashup is closed (which I'm not so sure whether this is possible or not)Anyway feel free to give me your idea! I'm looking forward to your ideas!
Hi, I can see the below(Merge and Duplicate), in the Layout section, I am not sure what is its original use, and how can a Developer take advantage of it. Thanks,
Is there a way to programmatically duplicate an entity? It seems some entities don't have thing templates, so they cannot be created with a thing template.
While filling up the Spreadsheet(Equipment) there are no columns for the Equipmenttypeuid and when I am trying to run that query without that column , error is coming that Equipmenttypeuid cant be null.Can someone help me regarding populating the Data in DB.For the PTC Guide reference --> https://support.ptc.com/help/thingworx_applications_setup/r1.0/en/#page/applications_setup/Common_Config_Process_JSON_File.html#
In order to deploy localization tables as packaged project entities (using Solution Central) we have to create our own localization tables (instead of using the existing "Default", "de" etc.) as described in case CS364402 https://www.ptc.com/en/support/article/CS364402 We create a second table for an existing langague. We have to add arbitrary information to make it unique for the project: "de-pr1" instead of "de", since "de" exists. (To evade the duplicate Thing name problem) Now "de-pr1" is still referencing the Default localization table (contradicting our intention behind all this)How can I change this? If I look at the Composer view of the newly created LT (picture) I can see the "Reference Locale"-Dropdown on the top right. I can chose from all LTs, but this is not an option I can save for the LT. I would like to create an "en-pr1"-Table that is referenced by "de-pr1" and never explicitly write into Default. What would be the recommended way to achi
TLDR: Don't use a field name called "location" in your DataTable to save values of the datatype location. Just call it something else. I have been trying to store some data in a DataTable and run into an issue where whenever I try to retrieve the location field, it would always be 0,0,0. This was very confusing and I was clearly not the only person, here is an old post with a false solution:https://community.ptc.com/t5/ThingWorx-Developers/Unable-to-store-location-in-a-data-table/td-p/513471 The problem lies in the fact that when your datashape has a field definition called "location" of datatype location, then you are duplicating the internal field definition of a DataTable. Below is a screenshot of the default field definitions and you will see that there is a "location" field in there.Just change your DataShape to use a different field name (other than "location") and you should be fine.
Hi All, I keep getting this error: 'Error on server ' when I attempt to save permissions on a template whose children have remote connections. Is this a Thingworx error? Or perhaps is there some sort of security feature for remote connections that does not permit a user to save permissions on a template that has remotely connected children? Regards,
Hi, The application Log gets multiple times a minute this message:"Failed to dispatch the event. Invalid Thing in the Event or Thing got deleted Type.Thing:Entity.PersistentSessione1f7a041-a8fd-46f2-90f3-7f7bb03fa880:Event.AnyDataChange:PersistentSessione1f7a041-a8fd-46f2-90f3-7f7bb03fa880" Does anyone know where to look for a cause?, the information in de Warning doesn't tell me where to look. Origin says: c.t.s.s.e.QueuedEvents + Thread: websocket background processing + User : SuperUser Best regards,Emiel
Hi,we are using samsung tvs to view dashboards made with thingworx.Our TVs are now not loading the mashup anymore and are getting the error "internal exception 1".The mashups can also not be viewed in the designer.The cache has been deleted and everything that can be resetted has been.We are using the version 9.3 Regards,Thorben
Hi,according to the documentation the Grid Widget should have keyboard navigation. But it does not seem to be working. Pressing keys (arrow keys, tab etc.) is not doing anything. There seems to be no setting to activate the keyboard navigation. Am I missing something obvious? 🙂
Hi,I use the collection widget and set it to :view=flow; FlowLayoutGravity = edge. Its internal elements are left aligned. Is there a way to make internal elements right aligned?(ThingWorx 9.3.4-b1190 ) Thanks!JiabaoXiao
how to apply custom css on textfield textarea background-color.
Hello,How can we check whether property value is received in thingworx or not using Java SDK In Java SDK we create a connection with a web socket so there is any method to check property is updated or not
I need to add a header to my collections . When I set up header mashup, header display on every row. Is there a way I can have only one header ?
Hi, I want to use two way binding in thingworx with JAVA SDK program, when thing property change from thingworx how can I know in java SDK program.
Hello,I am facing an error when i try to use pop-up from a collection (mashup inside collection contain a button that open a pop-up). If i try to zoom in or zoom out, the pop-up is closing.Do you know if collection is refreshing on zoom action or what i can solve this issue?Thank you in advance, Alex
Hello,I am using collection widget for our mashup page. Inside collection we user navigation to open a pop-up.If the user will zoom out because is not seeing all the info on laptop screen, the pop-up automatically closed.What we can do for avoid refreshing collection widget when zoom in zoom out?Thank you,Luchiian Alexandru
Hi,I would like to monitor the user login data, such as user name, login time, logout time, and maybe even better with login PC's info (device name, IP address).There're similar info provided in Monitoring menu of composer as 'Connected Users', so is there a service I can get these info? By the way, sometime I saw one user has multiple records on this list and are all marked as "isConnected". So that means the same user is logged into the system via different sessions?Thank you!
I created a Job Order Notification service according to this instruction and I assigned in PTC.FSU.CORE.JobOrder.Endpoint_TG. When should this Job Order Notification be called? How can I check if this service is called and get its result?I am using Thingworx 9.3.9.
Hello,Can anyoe help me on how to add border and other css elements for the HTML table in the below service in thingworxThanks in advance!
I wonder when this service is executed? And how its arguments look like? What does it mean ProcessType? I want to use this mechanism but I dont know when this NotifyJobOrderStatusChange_END and my custom service (To use Job Order Notifications, a custom service must be created that will receive the Job Order Notification messages from the ThingWorx Applications.) are called 😞 Should I called it by some kind of Scheduler?
Hello,I'm working on a Sentiment Analysis project utilising a huge movie reviews dataset I obtained from here, and when I execute my code, I keep getting an out-of-memory issue. Here's an example of pertinent code from my code: import pandas as pd from sklearn.model_selection import train_test_split from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.svm import SVC # Load the large movie reviews dataset data = pd.read_csv('large_movie_reviews.csv') # Preprocess the data # ... (code for data preprocessing) # Split the dataset into training and testing sets X_train, X_test, y_train, y_test = train_test_split(data['review'], data['sentiment'], test_size=0.2, random_state=42) # Vectorize the text data using TfidfVectorizer vectorizer = TfidfVectorizer() X_train_vectorized = vectorizer.fit_transform(X_train) X_test_vectorized = vectorizer.transform(X_test) # Train the Support Vector Machine (SVM) model model = SVC(kernel='linear') model.fit(X_train_vectorized,
I'm using the TWX Analytics clustering microservice for unsupervised machine learning. I was able to load the dataset, ran the clustering microservice, retrieved the PMML model and imported it to the Analytics Manager. How I can visualize my cluster data using ThingWorx?
There is 2 tab in this model popup the 1st tab label is in left and the 2nd tab label is in mid I am trying to add a left margin in the 1st tab label. but when I am trying to add using mashup property it applied to both the tab label. and I am not able to find the css path also to solve this issue
Dears, I have amount of bound tags(greater than 1000) needed to monitor. When any quality turns to bad or other status except good, subscription should be triggered to send info. How can I config event or subscription to get this with minimal impact on system stability. 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.