Property Format="password" on RadzenGridColumn not working

I am trying to set one of the RadzenGridColumn property with Format="password" to show "......" for the password but the original password was shown. Anyone knows what is wrong with that?

        <RadzenGridColumn TItem="Admin.Models.User.User" Property="Password" Title="Password" Format="password">
          <EditTemplate Context="adminModelsUserUser">
            <RadzenTextBox style="display: block; width: 100%" @bind-Value="@(adminModelsUserUser.Password)" Name="Password">
            </RadzenTextBox>
          </EditTemplate>
        </RadzenGridColumn>

Hi @Juhhorng_Lu,

There is no such format for the grid column. The only way to achieve your goal is to define Template with your custom content.

I have done that and it is working. Is it possible not to show the border of the Password box?

Thanks!