Skip to main content
1-Visitor
March 31, 2021
Solved

Need is to turn off Autocomplete for fields like Password entry

  • March 31, 2021
  • 1 reply
  • 2113 views

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.

Best answer by RS_L555

Thanks Yue

1 reply

12-Amethyst
April 1, 2021

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.

RS_L5551-VisitorAuthor
1-Visitor
April 1, 2021

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 ?

12-Amethyst
April 5, 2021

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.