Jfxtras-Agenda, set Calender to fixed Week - calendar

I´m working with the Agenda-Tool and want to set it to one fixed Week, because I just want to use it as a Timetable for a School and they want to work with the same schedule each Week. I know that it is using the util.Calendar, but i can't find a Way to set it fixed. Thanks in Advance!

Agenda has a displayedCalendar property which is used to specify what is to be shown. In week skin it will display the week where the calendar is part of, in day skin it will show the single day (and if there will be a month view...

Related

Big Calendar - How to display a half day in month view

I am using Big Calendar (https://github.com/jquense/react-big-calendar) in my react application, and I have problem to show only half of day for event in month view in Big Calendar component.
For example:
Event starts on 06.04.2021 at 12:00, and ends on 09.04.2021 at 12:00
Default behaviour:
Output should looks like this:
PS: In this scenario, it is easy just move it by CSS combination of position relative and right/left property. Complications occurs when event cover more weeks like this:
Any help?
Thanks.
At the time of writing this is not possible in any version of fullCalendar (or derivatives such as react big calendar). The "month" view has no concept of any time period shorter than a day.

there is some way to change the text of the days in a calendar?

By default, in the days of calendar it is shown the day of the month, but I would like to modify the calendar to be able to show more text, like the events of the day.
I have serach on internet and I have found examples how to create a new control, but I would like to know if it is a way to modify the estandar control to show this information.
Thanks.
If you want to customize the Data displayed in a Datepicker- or Calendarcontrol you need to modify its control template.
This is the way to go if you want to extend any WPF Control.
You can find information on how to specifity modify the calendar control here.

How to Block past date or selected dates in XamDateTimeInput

I have infragistics XamDateTimeInput control. I want to prevent users to select some configured dates or past dates(Disable the dates). Here is the example which i found in a train booking site. They disabled the past dates.
Thanks.
I don't have the Infragistics control to test this, but from studying the XamDateTimeInput doc and the ValueConstraint doc, you should be able to set a min and max date by:
<XamDateTimeInput ...>
<XamDateTimeInput.ValueConstraint>
<ValueConstraint MinInclusive="Your min date" MaxInclusive="Your max date"/>
</XamDateTimeInput.ValueConstraint>
</XamDateTimeInput>
I can't find a way to block a specific date range though. However, a few weeks ago I stumbled across this article on CodeProject, where the author has modified a regular WPF DatePicker. His solution also includes support for Blackout Dates:
CodeProject: A couple of tricks when using the standard WPF .NET 4.0 DatePicker control
You may use this post to modify your Infragistics XamDateTimeInput control. I can't test or provide an example here, as like I said, I haven't purchased their controls.

ExtJS 4.2 Month Days (columns) for Holiday Planner

I have a requirement for a 4.2.1 ExtJS app that Im building, to have a grid like the image below:
The objective of the grid is to manage Holidays for employees.
I was thinking in setting the columns of the grid dinamically, but will need to fill the background cell depending of the type of "leave type", and also disable some cells depending on the days that are not supposed to work (like weekends, etc).
Any advice on how can I approach to the solution? Appreciate in advance.
There is a commercial scheduler that does exactly that and more. See http://bryntum.com

WPF Toolkit Calendar Control - how to prevent next month scrolling?

When the calendar control provided in the WPF toolkit (and included in .Net 4) is displayed in "month view", it displays days from the previous and the next month, filling up the entire calendar. When you click on a day of the previous or next month, it will scroll a month backwards or forwards automatically. This behavior is throwing my users off.
Is there any way to prevent this automatic scrolling from happening?
Thanks!
If you set the DisplayDateStart property to the first day of the month and the DisplayDateEnd property to the last day of the month, those days from other months are not show, and hence cannot be clicked on.
If you can do it in xaml, it would look like this:
<my:Calendar Margin="50,49,48,43" Name="calendar1" SelectionMode="MultipleRange"
DisplayMode="Month" DisplayDateStart="2009-08-01" DisplayDateEnd="2009-08-31"/>
But that would only work if you knew that dates at design time. So you would probably want to set the dates in the code.
calendar1.DisplayDateStart = new DateTime(2009, 08, 01);
calendar1.DisplayDateEnd = new DateTime(2009, 08, 31);
Of coarse you would need to provide the first and last day of the particular month.

Resources