Reputation: 11
In my application, we are using Wicket and for Date picker I want to apply the following css class ‘ui-datepicker-today’, to a 'td' tag that already has a css class ‘ui-datepicker-current-day’ i.e. current date should have both of these css classes.
I think that somewhere wicket is internally applying these classes, just returning the updated innerHTML and thus dynamically creating the date picker (shown in below screenshot)
below screenshot shows the effect of css class ‘ui-datepicker-today’ on 6
and the effect of css class ‘ui-datepicker-current-day’ on 7
Upvotes: 0
Views: 27
Reputation: 11
For kendo I found the fix on below article and for WiQuery I coded the same type of fix
https://docs.telerik.com/kendo-ui/knowledge-base/calendar-with-timezone
Upvotes: 0