Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs(Scheduler): Restrict popup edit form height #2859

Merged
merged 3 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/scheduler/editing/edit-appointments.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ The example below shows the signature of the event handlers so you can copy the
OnEdit="@EditHandler" OnCancel="@CancelHandler"
AllowCreate="true" AllowDelete="true" AllowUpdate="true"
@bind-Date="@StartDate" Height="600px" @bind-View="@CurrView">
<SchedulerSettings>
<SchedulerPopupEditSettings MaxHeight="99vh" />
</SchedulerSettings>
<SchedulerViews>
<SchedulerDayView StartTime="@DayStart" />
<SchedulerWeekView StartTime="@DayStart" />
Expand Down
1 change: 1 addition & 0 deletions components/scheduler/editing/edit-popup-customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ The `SchedulerPopupEditFormSettings` nested tag exposes the following parameters
<SchedulerSettings>
<SchedulerPopupEditSettings Width="600px"
MinWidth="500px"
MaxHeight="99vh"
Title="Edit Event"
Class="custom-popup">
</SchedulerPopupEditSettings>
Expand Down
9 changes: 9 additions & 0 deletions components/scheduler/resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ The field names used for the resource model (`Text`, `Value` and `Color`) are th
<SchedulerWeekView StartTime="@DayStart" />
<SchedulerMultiDayView StartTime="@DayStart" NumberOfDays="10" />
</SchedulerViews>
<SchedulerSettings>
<SchedulerPopupEditSettings MaxHeight="99vh" />
</SchedulerSettings>
</TelerikScheduler>

@code {
Expand Down Expand Up @@ -177,6 +180,9 @@ The field names used for the resource model (`Name`, `Id` and `Shade`) are diffe
<SchedulerWeekView StartTime="@DayStart" />
<SchedulerMultiDayView StartTime="@DayStart" NumberOfDays="10" />
</SchedulerViews>
<SchedulerSettings>
<SchedulerPopupEditSettings MaxHeight="99vh" />
</SchedulerSettings>
</TelerikScheduler>

@code {
Expand Down Expand Up @@ -281,6 +287,9 @@ Actual CRUD operations are not implemented for brevity, just the UX is enabled s
<SchedulerWeekView StartTime="@DayStart" />
<SchedulerMultiDayView StartTime="@DayStart" NumberOfDays="10" />
</SchedulerViews>
<SchedulerSettings>
<SchedulerPopupEditSettings MaxHeight="99vh" />
</SchedulerSettings>
</TelerikScheduler>

@code {
Expand Down
Loading