Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
Need is to turn off Autocomplete for fields like Password entry in Form as in the Login Page, so that the browser does not prompt user to save the populated values for later use.
Solved! Go to Solution.
Hello @RS_L555
Due to the security reason, it's now allowed to turn off AutoComplete of the Password entry. If you use Text Field widget on Mashup, it's possible to turn on/off Autocomplete by Password property.
Hello Yue,
Thanks for your response. Is it possible to turn off Autocomplete on the TWX default login page that comes from the Organization link ? Also whether the Text Field widget can take the AlphaNumeric and Special characters that we normally use for entering passwords ?
Hi @RS_L555
ThingWorx does not have the feature to turn off auto complete on Organization Login page. It is not supported but it's possible to customize form Login page or create your own login page as follows.
Modify Login Form
https://community.ptc.com/t5/ThingWorx-Developers/Modify-Login-Form/td-p/525781
About text field widget, the input values can be validated by using Validate function. Please add a parameter on validate function for the input value, and check if the value only contains AlphaNumeric and Special characters by JavaScript (e.g. regexp) in Expression field.
Thanks Yue