BlazorDateRangePicker
BlazorDateRangePicker copied to clipboard
Ambiguity PickerTemplate in an EditForm
The child content element 'PickerTemplate' of component 'DateRangePicker' uses the same parameter name ('context') as enclosing child content element 'ChildContent' of component 'EditForm'. Specify the parameter name like: 'PickerTemplate Context="another_name" to resolve the ambiguity
Hi, you can rename it in your code:
<DateRangePicker>
<PickerTemplate Context="myCustomContext"></PickerTemplate>
</DateRangePicker>