BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hello,
I'm using Syncfusion for ASP.Net Core Version 17.3.0.19.
I implemented the DateRangePicker on one of my Pages like this:
@Html.EJS().DateRangePicker(ViewData[ViewDataKeys.DatePickerId] as string).Format(dateFormat).FirstDayOfWeek(1).WeekNumber().StartDate(DateTime.Today).EndDate(DateTime.Today).ShowClearButton(false).Created("onDateRangePickerCreated").Change("onDateRangePickerChange").Select("onDateRangePickerSelect").Close("onDateRangePickerClose").Render()
So my problem now is, that i can see the follwowing Inputboxes on the UI. Those should not be there:
When i have a look at the generated code in the browser, i can see those imput boxes into the DateRangePicker span:
Where are they comming from and how can i set them invisible? Ty and best regards Dominic
// Hidden element styles
.e-daterange-hidden {
border: 0 !important;
height: 0 !important;
margin: 0;
padding: 0 !important;
text-indent: 0;
visibility: hidden;
width: 0;
} |