telerik / kendo-ui-core

An HTML5, jQuery-based widget library for building modern web apps.
http://www.telerik.com/kendo-ui
Other
2.54k stars 1.9k forks source link

Spinners and calendar are not displayed for recurring rule in edit window in Scheduler #7962

Closed nelito987 closed 1 month ago

nelito987 commented 2 months ago

Bug report

When the user tries to set a repeat rule for an event, the spinners for the NumericTextBoxes are not displayed

Reproduction of the problem

  1. Open the Demo - https://demos.telerik.com/kendo-ui/scheduler/basic-usage
  2. Try to edit or create an event and click Repeat Daily

Current behavior

The spinners are not displayed. Also, the calendar icon is not displayed.

The following classes should be applied only to the parent element: k-recur-interval, k-recur-count, k-recur-until

Expected/desired behavior

The spinners and the calendar icon should be visible

The issue is a regression starting with 2023.1.117

Workaround

edit: function(e){

            $('[name="recurrenceRule"] .k-button-group-stretched button').click(function(){               
              $('.k-recur-interval.k-input-inner').removeClass('k-recur-interval')
              $('.k-recur-count.k-input-inner').removeClass('k-recur-count')
              $('.k-recur-until.k-input-inner').removeClass('k-recur-until')
            })

 },

Dojo - https://dojo.telerik.com/@NeliK/iVExeNek

Environment