function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
prasad vivekprasad vivek 

How to acheive UI:InputSecret functionliaty in lightning:input

Hi All,
I am trying to achieve UI: InputSecret functionality using lightning: input,.I have tried a lot but could not find away. There should be a way bcz lightning:input is now standard way of development for development.
 
Rounak SharmaRounak Sharma
hi vivek,
can you try this way once
Component
<aura:attribute name="password" type="String" />
<lightning:input type="password" label="Password" value= "{!v.password}" name="password" placeholder="Enter Password" aura:id = "pwd"/>

Please let me know if this helps you.
thanks