I want to show only Time picker for GridColumn when I set its Type to EditType.DateTimePickerEdit. However when I try to update/add row, it shown two buttons (one for Date and other for time). Though have added Format attribute that prevents adding date to the field.
I only want to show time picker not date picker. What is the solution to the problem? Code is here:
<GridColumn HeaderText="Hours Open: SUN" Field="@nameof(ProvidersListModel.HoursOpenSun)" EditType="EditType.DateTimePickerEdit" AllowResizing="true" Width="200" Format="hh:mm tt" />
Note: ProvidersListModel.HoursOpenSun is of DateTime.