Hi Telerik team
I have a grid with InCell editing
.Name("UserDetailsGrid").Editable(editable=> editable.Mode(GridEditMode.InCell) )
This grid has a column Password
columns.Bound(p=> p.Password).ClientTemplate("***").Title("Password").Width(200);
On Edit / Create New I need to have
a password confirm option which will force the user to type the password two times.
This is required because I am not
displaying the password to the user in the grid. I am displaying it using
ClientTemplate("***") which will show * on the grid
Can you help me to solve this issue. This way or some other better way.
Thanks
I have a grid with InCell editing
.Name("UserDetailsGrid").Editable(editable=> editable.Mode(GridEditMode.InCell) )
This grid has a column Password
columns.Bound(p=> p.Password).ClientTemplate("***").Title("Password").Width(200);
On Edit / Create New I need to have
a password confirm option which will force the user to type the password two times.
This is required because I am not
displaying the password to the user in the grid. I am displaying it using
ClientTemplate("***") which will show * on the grid
Can you help me to solve this issue. This way or some other better way.
Thanks