1 write to FieldIdentifier
Microsoft.AspNetCore.Components.Web (1)
Forms\InputBase.cs (1)
239
FieldIdentifier
= FieldIdentifier.Create(ValueExpression);
11 references to FieldIdentifier
Microsoft.AspNetCore.Components.Web (10)
Forms\InputBase.cs (6)
70
/// Gets the <see cref="
FieldIdentifier
"/> for the bound value.
98
EditContext?.NotifyFieldChanged(
FieldIdentifier
);
140
_parsingValidationMessages.Add(
FieldIdentifier
, validationErrorMessage);
143
EditContext.NotifyFieldChanged(
FieldIdentifier
);
191
var fieldClass = EditContext?.FieldCssClass(
FieldIdentifier
);
288
if (EditContext.GetValidationMessages(
FieldIdentifier
).Any())
Forms\InputDate.cs (1)
120
validationErrorMessage = string.Format(CultureInfo.InvariantCulture, _parsingErrorMessage, DisplayName ??
FieldIdentifier
.FieldName);
Forms\InputExtensions.cs (1)
43
validationErrorMessage = $"The {input.DisplayName ?? input.
FieldIdentifier
.FieldName} field is not valid.";
Forms\InputNumber.cs (1)
77
validationErrorMessage = string.Format(CultureInfo.InvariantCulture, ParsingErrorMessage, DisplayName ??
FieldIdentifier
.FieldName);
Forms\InputRadioGroup.cs (1)
65
_context.FieldClass = EditContext?.FieldCssClass(
FieldIdentifier
);
Microsoft.AspNetCore.Components.Web.Tests (1)
Forms\InputBaseTest.cs (1)
558
public new FieldIdentifier FieldIdentifier => base.
FieldIdentifier
;