I’m working with the Kendo DateRange component and I need to disable future dates. I attempted to use [disabledDates]="dates"
, but this option is not available. How can I achieve this?
<kendo-daterange>
<div class="col col-6 custDatePickerWidth">
<label>Created Date From</label>
<kendo-dateinput name="SearchDatePickerCreatedDateFrom" kendoDateRangeStartInput
formControlName="createdDateFrom" [format]="'MM/dd/yyyy'" placeholder="mm/dd/yyyy" [max]="maxDate">
</kendo-dateinput>
</div>
<span class="line">-</span>
<div class="col col-6 custDatePickerWidth toDate">
<label>Created Date To</label>
<kendo-dateinput name="SearchDatePickerCreatedDateTo" kendoDateRangeEndInput formControlName="createdDateTo"
[format]="'MM/dd/yyyy'" placeholder="mm/dd/yyyy" [max]="maxDate">
</kendo-dateinput>
</div>
</kendo-daterange>
Unable to display current month when setting selectionRange property value to future date range
Here is my requirement. Multiviewcalendar should display 12 months and first month should be current month. User selected a future date range. In edit mode, highlighted user selected future date range in calendar by setting property [selectionRange]="userSelectedDateRange". Here the issue is calendar's first month is user selected future month. Not current month. Is there any fix to display current month and highlight selected future dates.
ERROR Error: Uncaught (in promise): NullInjectorError: R3InjectorError(Standalone[ReportsComponent])[MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent]:
NullInjectorError: No provider for MultiViewCalendarComponent!
NullInjectorError: R3InjectorError(Standalone[ReportsComponent])[MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent]:
NullInjectorError: No provider for MultiViewCalendarComponent!
I am using kendo Multiview calendar .I am expecting that when I click on any of the Weeknumber, complete week should be selected . Kindly help on this . Is there any click event available ?
I am using kendo Multiview calendar . Current implementation is the start day of the week is from Sunday.
I need to make start day of the week as Monday .Kindly help on this
My sample code :
We are localizing our application for the first time and have started to pull the key/translations from the yml files in @progress/kendo-angular-messages.
So far we have noticed that the en-US and fr-CA files are missing target values for the following:
If we run the command: "npx kendo-translate src/locale/messages.fr.xlf --locale fr-CA", the resulting file is missing target elements for meanings like kendo.chat.send and kendo.multiviewcalendar.today.
It looks like there are other missing packages as well like kendo.colorpicker.*, kendo.stepper.*, and kendo.tooltip.*.
This is a problem for us because we aren't using the Angular i18n built-in support. Instead, we are using ngx-translate and have implemented our own MessagingService for the kendo strings, using the English files in the kendo-angular-messages as the source for the key/value pairings and for translation. As a result, if the ids aren't in the yml files, we end up with keys displaying in our UI like this:
Would it be possible to update the kendo-angular-messages repo to contain all the strings, at least in English?