We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.0.0
https://auth-test.masastack.com/User
No response
The text was updated successfully, but these errors were encountered:
@MayueCif 调查了一下,edge需要点击才会将密码和账号填充到输入框,此时会触发input事件。但chrome浏览器会自动添加,不会触发input事件或其他事件,似乎无法让值更新到Blazor的状态。目前有个解决办法是,password输入框type默认为text,此时不会触发自动填充的行为,但用户点击输入框再设置为password。
Sorry, something went wrong.
Avoid overlapping the label with the input:
<MTextField @bind-Value="name" Label="Name" @ref="_textField"></MTextField> @code { private MTextField<string>? _textField; protected override async Task OnAfterRenderAsync(bool firstRender) { if (firstRender) { await JS.InvokeVoidAsync(JsInteropConstants.AddCls, _textField?.LabelReference?.Ref, "m-label--active"); } } }
Set the background color for autofill:
input:-webkit-autofill { box-shadow: 0 0 0 1000px white inset !important; -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important; }
capdiem
No branches or pull requests
Masa.Blazor version
1.0.0
Describe the bug
https://auth-test.masastack.com/User
Expected Behavior
No response
Steps To Reproduce
No response
Reproduction code
No response
.NET version
No response
What browsers are you seeing the problem on?
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: