Skip to content

Commit 91fa06c

Browse files
Merge pull request #465 from Syncfusion-Content/hotfix/hotfix-v26.1.35
DOCINFRA-2341_merged_using_automation
2 parents 100367b + 6172d36 commit 91fa06c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1115
-82
lines changed

ej2-react-toc.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1075,20 +1075,23 @@
10751075
</li><li>
10761076
Gantt
10771077
<ul>
1078+
<li><a href="/ej2-react/gantt/overview">Overview</a></li>
10781079
<li>Getting Started
10791080
<ul>
10801081
<li><a href="/ej2-react/gantt/getting-started">React</a></li>
10811082
<li><a href="/ej2-react/gantt/nextjs-getting-started">NextJS</a></li>
10821083
<li><a href="/ej2-react/gantt/preact">Preact</a></li>
10831084
</ul>
10841085
</li>
1086+
<li><a href="/ej2-react/gantt/key-elements">Key Elements in Gantt UI</a></li>
10851087
<li><a href="/ej2-react/gantt/module">Feature Modules</a></li>
10861088
<li><a href="/ej2-react/gantt/data-binding">Data Binding</a>
10871089
<ul>
10881090
<li><a href="/ej2-react/gantt/immutable">Immutable Mode</a></li>
10891091
<li><a href="/ej2-react/gantt/loading-animation">Loading Animation</a></li>
10901092
</ul>
10911093
</li>
1094+
<li><a href="/ej2-react/gantt/performance">Performance Best Practices</a></li>
10921095
<li><a href="/ej2-react/gantt/columns/columns">Columns</a>
10931096
<ul>
10941097
<li><a href="/ej2-react/gantt/columns/column-reordering">Column Reordering</a></li>

ej2-react/auto-complete/disabled-items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ The [disableItem](https://ej2.syncfusion.com/react/documentation/api/auto-comple
5454

5555
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.
5656

57-
![Disabled AutoComplete Component](../images/autocomplete-disable.png)"
57+
![Disabled AutoComplete Component](../images/autocomplete-disable.png)

ej2-react/code-snippet/gantt/resource-customization-cs1/app/App.jsx

Whitespace-only changes.

ej2-react/code-snippet/gantt/resource-customization-cs1/app/App.tsx

Whitespace-only changes.
Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
export let projectResources = [
2+
{ resourceId: 1, resourceName: 'Project Manager' },
3+
{ resourceId: 2, resourceName: 'Software Analyst' },
4+
{ resourceId: 3, resourceName: 'Developer' },
5+
{ resourceId: 4, resourceName: 'Testing Engineer' }
6+
];
7+
export let data = [
8+
{
9+
taskID: 1,
10+
taskName: 'Project schedule',
11+
startDate: new Date('02/08/2019'),
12+
endDate: new Date('03/15/2019'),
13+
subtasks: [
14+
{
15+
taskID: 2,
16+
taskName: 'Planning',
17+
startDate: new Date('02/08/2019'),
18+
endDate: new Date('02/12/2019'),
19+
subtasks: [
20+
{
21+
taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
22+
endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
23+
},
24+
{
25+
taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
26+
endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
27+
},
28+
{
29+
taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
30+
endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
31+
},
32+
{
33+
taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
34+
endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
35+
}
36+
]
37+
}, {
38+
taskID: 7,
39+
taskName: 'Design',
40+
startDate: new Date('02/15/2019'),
41+
endDate: new Date('02/19/2019'),
42+
subtasks: [
43+
{
44+
taskID: 8, taskName: 'Software specification', startDate: new Date('02/15/2019'),
45+
endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
46+
},
47+
{
48+
taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
49+
endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
50+
},
51+
{
52+
taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
53+
endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
54+
},
55+
{
56+
taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
57+
endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
58+
}
59+
]
60+
},
61+
{
62+
taskID: 12,
63+
taskName: 'Implementation phase',
64+
startDate: new Date('02/25/2019'),
65+
endDate: new Date('03/05/2019'),
66+
subtasks: [
67+
{
68+
taskID: 13,
69+
taskName: 'Phase 1',
70+
startDate: new Date('02/25/2019'),
71+
endDate: new Date('03/07/2019'),
72+
subtasks: [{
73+
taskID: 14,
74+
taskName: 'Implementation module 1',
75+
startDate: new Date('02/25/2019'),
76+
endDate: new Date('03/07/2019'),
77+
subtasks: [
78+
{
79+
taskID: 15, taskName: 'Development task 1', startDate: new Date('02/22/2019'),
80+
endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
81+
},
82+
{
83+
taskID: 16, taskName: 'Development task 2', startDate: new Date('02/22/2019'),
84+
endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
85+
},
86+
{
87+
taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
88+
endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
89+
},
90+
{
91+
taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
92+
endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
93+
},
94+
{
95+
taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
96+
endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
97+
},
98+
{
99+
taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
100+
endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
101+
}
102+
]
103+
}]
104+
},
105+
{
106+
taskID: 21,
107+
taskName: 'Phase 2',
108+
startDate: new Date('02/25/2019'),
109+
endDate: new Date('03/05/2019'),
110+
subtasks: [{
111+
taskID: 22,
112+
taskName: 'Implementation module 2',
113+
startDate: new Date('02/25/2019'),
114+
endDate: new Date('03/05/2019'),
115+
subtasks: [
116+
{
117+
taskID: 23, taskName: 'Development task 1', startDate: new Date('02/22/2019'),
118+
endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
119+
},
120+
{
121+
taskID: 24, taskName: 'Development task 2', startDate: new Date('02/22/2019'),
122+
endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
123+
},
124+
{
125+
taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
126+
endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
127+
},
128+
{
129+
taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
130+
endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
131+
},
132+
{
133+
taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
134+
endDate: new Date('03/09/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
135+
},
136+
{
137+
taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
138+
endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
139+
}
140+
]
141+
}]
142+
},
143+
{
144+
taskID: 29,
145+
taskName: 'Phase 3',
146+
startDate: new Date('02/25/2019'),
147+
endDate: new Date('03/07/2019'),
148+
subtasks: [{
149+
taskID: 30,
150+
taskName: 'Implementation module 3',
151+
startDate: new Date('02/25/2019'),
152+
endDate: new Date('03/07/2019'),
153+
subtasks: [
154+
{
155+
taskID: 31, taskName: 'Development task 1', startDate: new Date('02/22/2019'),
156+
endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
157+
},
158+
{
159+
taskID: 32, taskName: 'Development task 2', startDate: new Date('02/22/2019'),
160+
endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
161+
},
162+
{
163+
taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
164+
duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
165+
},
166+
{
167+
taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
168+
duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
169+
},
170+
{
171+
taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
172+
endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
173+
resourceId: [1]
174+
},
175+
{
176+
taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
177+
endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
178+
},
179+
]
180+
}]
181+
}
182+
]
183+
},
184+
{
185+
taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
186+
progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
187+
},
188+
{
189+
taskID: 38, taskName: 'Final testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
190+
progress: '0', predecessor: '37FS', resourceId: [4]
191+
},
192+
{
193+
taskID: 39, taskName: 'Final delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
194+
duration: 0, predecessor: '38FS'
195+
}
196+
]
197+
}
198+
];

0 commit comments

Comments
 (0)