I have been using the RadzenDatePicker and wish to render it upon the click of another component, such that it appears as follows:
<button @onclick="{Needed Function}">Open Date Picker<button>
<RadzenDatePicker />
Is it possible ?
I have been using the RadzenDatePicker and wish to render it upon the click of another component, such that it appears as follows:
<button @onclick="{Needed Function}">Open Date Picker<button>
<RadzenDatePicker />
Is it possible ?
You could try focus the field with JS when they click the button..
document.getElementById("myDateField").focus();