-
Notifications
You must be signed in to change notification settings - Fork 667
Scheduler - Fix unstable ContextMenu demo test #32368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Tucchhaa
merged 22 commits into
DevExpress:26_1
from
Tucchhaa:fix_context_menu_demo_test_26_1
Feb 9, 2026
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
cfbc8a0
unskip tests
Tucchhaa fb06cd7
fix icon bg in angular
Tucchhaa e5d26fd
Merge branch '26_1' into fix_context_menu_demo_test_26_1
Tucchhaa b6dfff4
make itemTemplate in jquery consistent & rename react itemTemplate
Tucchhaa 2d2031f
fix double contextMenu event call
Tucchhaa 487ad86
implement test for contextmenu
Tucchhaa 54bc351
convert react demo to js
Tucchhaa 1be15fe
rewrite jquery and vue demos
Tucchhaa 30e764e
fix lint & ts
Tucchhaa 84a44ad
link styles.css to jquery and react & rewrite react and angular demos
Tucchhaa d6a67c1
convert react to js
Tucchhaa 72b1695
update etalon & fix lint
Tucchhaa a242842
fix angular demo & remove useless styles
Tucchhaa 8dfbf0c
fix angular demo cell context
Tucchhaa cdcf6d1
fix tests
Tucchhaa 2728e00
remove unneeded changes
Tucchhaa 8f9c9ef
Merge branch '26_1' into fix_context_menu_demo_test_26_1
Tucchhaa 6bb2d09
fix demo types
Tucchhaa 6f82c3c
revert workspace changes
Tucchhaa c2a27aa
use single contextMenu
Tucchhaa c99be33
prettier
Tucchhaa 5d902e2
Merge branch '26_1' into fix_context_menu_demo_test_26_1
Tucchhaa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
6 changes: 3 additions & 3 deletions
6
...ContextMenu/React/AppointmentTemplate.tsx → ...eduler/ContextMenu/React/itemTemplate.tsx
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,17 @@ | ||
| import React from 'react'; | ||
|
|
||
| type AppointmentMenuTemplateProps = { | ||
| type ItemTemplateProps = { | ||
| data: { | ||
| color: string; | ||
| text: string; | ||
| } | ||
| }; | ||
|
|
||
| const AppointmentMenuTemplate = (props: AppointmentMenuTemplateProps) => ( | ||
| const ItemTemplate = (props: ItemTemplateProps) => ( | ||
| <div> | ||
| {props.data.color && <div className="item-badge" style={{ backgroundColor: props.data.color }} />} | ||
| {props.data.text} | ||
| </div> | ||
| ); | ||
|
|
||
| export default AppointmentMenuTemplate; | ||
| export default ItemTemplate; |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.