Skip to content

DOCINFRA-2341_merged_using_automation #465

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
merged 1 commit into from
Jul 3, 2024
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 ej2-react-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -1075,20 +1075,23 @@
</li><li>
Gantt
<ul>
<li><a href="/ej2-react/gantt/overview">Overview</a></li>
<li>Getting Started
<ul>
<li><a href="/ej2-react/gantt/getting-started">React</a></li>
<li><a href="/ej2-react/gantt/nextjs-getting-started">NextJS</a></li>
<li><a href="/ej2-react/gantt/preact">Preact</a></li>
</ul>
</li>
<li><a href="/ej2-react/gantt/key-elements">Key Elements in Gantt UI</a></li>
<li><a href="/ej2-react/gantt/module">Feature Modules</a></li>
<li><a href="/ej2-react/gantt/data-binding">Data Binding</a>
<ul>
<li><a href="/ej2-react/gantt/immutable">Immutable Mode</a></li>
<li><a href="/ej2-react/gantt/loading-animation">Loading Animation</a></li>
</ul>
</li>
<li><a href="/ej2-react/gantt/performance">Performance Best Practices</a></li>
<li><a href="/ej2-react/gantt/columns/columns">Columns</a>
<ul>
<li><a href="/ej2-react/gantt/columns/column-reordering">Column Reordering</a></li>
Expand Down
2 changes: 1 addition & 1 deletion ej2-react/auto-complete/disabled-items.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ The [disableItem](https://ej2.syncfusion.com/react/documentation/api/auto-comple

If you want to disabled the overall component to set the [enabled](https://ej2.syncfusion.com/react/documentation/api/auto-complete/#enabled) property to false.

![Disabled AutoComplete Component](../images/autocomplete-disable.png)"
![Disabled AutoComplete Component](../images/autocomplete-disable.png)
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
export let projectResources = [
{ resourceId: 1, resourceName: 'Project Manager' },
{ resourceId: 2, resourceName: 'Software Analyst' },
{ resourceId: 3, resourceName: 'Developer' },
{ resourceId: 4, resourceName: 'Testing Engineer' }
];
export let data = [
{
taskID: 1,
taskName: 'Project schedule',
startDate: new Date('02/08/2019'),
endDate: new Date('03/15/2019'),
subtasks: [
{
taskID: 2,
taskName: 'Planning',
startDate: new Date('02/08/2019'),
endDate: new Date('02/12/2019'),
subtasks: [
{
taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
},
{
taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
},
{
taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
},
{
taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
}
]
}, {
taskID: 7,
taskName: 'Design',
startDate: new Date('02/15/2019'),
endDate: new Date('02/19/2019'),
subtasks: [
{
taskID: 8, taskName: 'Software specification', startDate: new Date('02/15/2019'),
endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
},
{
taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
},
{
taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
},
{
taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
}
]
},
{
taskID: 12,
taskName: 'Implementation phase',
startDate: new Date('02/25/2019'),
endDate: new Date('03/05/2019'),
subtasks: [
{
taskID: 13,
taskName: 'Phase 1',
startDate: new Date('02/25/2019'),
endDate: new Date('03/07/2019'),
subtasks: [{
taskID: 14,
taskName: 'Implementation module 1',
startDate: new Date('02/25/2019'),
endDate: new Date('03/07/2019'),
subtasks: [
{
taskID: 15, taskName: 'Development task 1', startDate: new Date('02/22/2019'),
endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
},
{
taskID: 16, taskName: 'Development task 2', startDate: new Date('02/22/2019'),
endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
},
{
taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
},
{
taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
},
{
taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
},
{
taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
}
]
}]
},
{
taskID: 21,
taskName: 'Phase 2',
startDate: new Date('02/25/2019'),
endDate: new Date('03/05/2019'),
subtasks: [{
taskID: 22,
taskName: 'Implementation module 2',
startDate: new Date('02/25/2019'),
endDate: new Date('03/05/2019'),
subtasks: [
{
taskID: 23, taskName: 'Development task 1', startDate: new Date('02/22/2019'),
endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
},
{
taskID: 24, taskName: 'Development task 2', startDate: new Date('02/22/2019'),
endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
},
{
taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
},
{
taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
},
{
taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
endDate: new Date('03/09/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
},
{
taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
}
]
}]
},
{
taskID: 29,
taskName: 'Phase 3',
startDate: new Date('02/25/2019'),
endDate: new Date('03/07/2019'),
subtasks: [{
taskID: 30,
taskName: 'Implementation module 3',
startDate: new Date('02/25/2019'),
endDate: new Date('03/07/2019'),
subtasks: [
{
taskID: 31, taskName: 'Development task 1', startDate: new Date('02/22/2019'),
endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
},
{
taskID: 32, taskName: 'Development task 2', startDate: new Date('02/22/2019'),
endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
},
{
taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
},
{
taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
},
{
taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
resourceId: [1]
},
{
taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
},
]
}]
}
]
},
{
taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
},
{
taskID: 38, taskName: 'Final testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
progress: '0', predecessor: '37FS', resourceId: [4]
},
{
taskID: 39, taskName: 'Final delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
duration: 0, predecessor: '38FS'
}
]
}
];
Loading