Scheduler - Demos: update resources editors layout#31924
Merged
aleksei-semikozov merged 3 commits intoDevExpress:25_2from Dec 9, 2025
Merged
Scheduler - Demos: update resources editors layout#31924aleksei-semikozov merged 3 commits intoDevExpress:25_2from
aleksei-semikozov merged 3 commits intoDevExpress:25_2from
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Scheduler demo resource editors layout by customizing the appointment editing form structure across multiple demos (Timelines, Resources, IndividualViewsCustomization, and Agenda) for all framework implementations (jQuery, Vue, React, ReactJs, and Angular).
Key Changes
- Adds
editing.formconfiguration to customize the appointment form layout - Organizes resource fields in a horizontal 3-column layout using
colCount: 3 - Groups resource icon, primary resource, and secondary resource fields together for better UX
Reviewed changes
Copilot reviewed 20 out of 20 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| apps/demos/Demos/Scheduler/Timelines/jQuery/index.js | Adds form customization with ownerIdGroup containing ownerIdIcon, ownerId, and priority in 3 columns |
| apps/demos/Demos/Scheduler/Timelines/Vue/App.vue | Adds DxEditing, DxSchedulerForm, and DxItem imports; configures form with ownerIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Timelines/ReactJs/App.js | Adds Editing, SchedulerForm, and Item imports; configures form with ownerIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Timelines/React/App.tsx | Adds Editing, SchedulerForm, and Item imports; configures form with ownerIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.html | Adds dxo-scheduler-editing with form configuration for ownerIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Resources/jQuery/index.js | Adds form customization with roomIdGroup (3 columns with xs breakpoint) and assigneeIdGroup, includes descriptionGroup |
| apps/demos/Demos/Scheduler/Resources/Vue/App.vue | Adds form configuration with roomIdGroup (3 columns with xs breakpoint) and assigneeIdGroup, includes descriptionGroup |
| apps/demos/Demos/Scheduler/Resources/ReactJs/App.js | Adds form configuration with roomIdGroup (3 columns with xs breakpoint) and assigneeIdGroup, includes descriptionGroup |
| apps/demos/Demos/Scheduler/Resources/React/App.tsx | Adds form configuration with roomIdGroup (3 columns with xs breakpoint) and assigneeIdGroup, includes descriptionGroup |
| apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.html | Adds form configuration with roomIdGroup (3 columns with xs breakpoint) and assigneeIdGroup, includes descriptionGroup |
| apps/demos/Demos/Scheduler/IndividualViewsCustomization/jQuery/index.js | Adds form customization with priorityIdGroup containing priorityIdIcon, priorityId, and typeId in 3 columns |
| apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/App.vue | Adds form configuration with priorityIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/IndividualViewsCustomization/ReactJs/App.js | Adds form configuration with priorityIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/App.tsx | Adds form configuration with priorityIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.html | Adds form configuration with priorityIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Agenda/jQuery/index.js | Adds form customization with assigneeIdGroup containing assigneeIdIcon, assigneeId, and priorityId in 3 columns |
| apps/demos/Demos/Scheduler/Agenda/Vue/App.vue | Adds form configuration with assigneeIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Agenda/ReactJs/App.js | Adds form configuration with assigneeIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Agenda/React/App.tsx | Adds form configuration with assigneeIdGroup in 3 columns |
| apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.html | Adds form configuration with assigneeIdGroup in 3 columns |
Tucchhaa
reviewed
Dec 4, 2025
Tucchhaa
requested changes
Dec 4, 2025
| 'dateGroup', 'repeatGroup', { name: 'resourcesGroup', | ||
| items: [{ | ||
| name: 'ownerIdGroup', | ||
| colCount: 3, |
Contributor
There was a problem hiding this comment.
You also need to add
colCountByScreen: { xs: 3, },
because on mobile devides the form will look broken
Contributor
There was a problem hiding this comment.
Also add it to React demo as well
Contributor
There was a problem hiding this comment.
Yes, we need to add it in all demos
4a5339c to
39cd258
Compare
39cd258 to
427b770
Compare
sjbur
previously approved these changes
Dec 8, 2025
Tucchhaa
reviewed
Dec 8, 2025
Tucchhaa
reviewed
Dec 8, 2025
Tucchhaa
reviewed
Dec 8, 2025
6a90641 to
e783e89
Compare
Tucchhaa
approved these changes
Dec 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.