ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

Dataform Password Field is not Secure #1460

Open emperorjm opened 3 years ago

emperorjm commented 3 years ago

Platform: Android

Tell us about the problem

When a Password type field is created as follows the characters entered are hidden but the word being entered is shown in the word suggestion listing above the keyboard.

<TKEntityProperty v-tkDataFormProperty name="password_confirmation" displayName="Confirm Password" index="4">
                                    <TKNonEmptyValidator v-tkEntityPropertyValidators errorMessage="The password confirmation field is required"></TKNonEmptyValidator>
                                    <TKPropertyEditor v-tkEntityPropertyEditor type="Password"></TKPropertyEditor>
                                </TKEntityProperty>

In a normal text field where the attribute secure="true" is used this is not the case.