Opened 7 years ago
Closed 5 years ago
#18020 closed defect (patchwelcome)
Dojo ganttChart - IE 8 UI load time issue
Reported by: | manju | Owned by: | JayZ(zhouxiang) |
---|---|---|---|
Priority: | undecided | Milestone: | 1.13 |
Component: | Dojox | Version: | 1.9.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
In IE8 Dojo GanttChart? is taking more time to load UI, it freezes.
for eg: in below code i have added 2000 task items in the html
<!DOCTYPE html> <html>
<head>
<title>Gantt Chart</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style>
@import "http://archive.dojotoolkit.org/nightly/dojotoolkit/dojo/resources/dojo.css"; @import "http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/dijit.css"; @import "http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/claro/claro.css"; @import "http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/gantt/resources/gantt.css";
</style> <script src="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojo/dojo.js"
data-dojo-config="async:true, transparentColor: [ 255, 255, 255 ]"></script>
<script >
require([
"dojo/_base/declare",
"dojo/parser", "dojo/query", "dojox/gantt/GanttChart", "dojox/gantt/GanttProjectItem", "dojox/gantt/GanttTaskItem", "dojo/dom", "dojo/domReady!"
], function(declare, parser, query, GanttChart?, GanttProjectItem?, GanttTaskItem?, dom){
var projectDev = new GanttProjectItem?({
id: 1, name: "Development Project", startDate: new Date(2012, 5, 11)
});
var taskRequirement = new GanttTaskItem?({
id: 1, name: "Requirement", startTime: new Date(2012, 5, 11), duration: 50, percentage: 50, taskOwner: "Jack"
}); var taskAnalysis = new GanttTaskItem?({
id: 2, name: "Analysis", startTime: new Date(2012, 5, 18), duration: 40, percentage: 80, previousTaskId: "1", taskOwner: "Michael"
}); var taskDesign = new GanttTaskItem?({
id: 3, name: "Design", startTime: new Date(2012, 5, 18), duration: 60, percentage: 80, previousTaskId: "1", taskOwner: "Jason"
}); var taskDetailDesign = new GanttTaskItem?({
id: 4, na
Attachments (1)
Change History (5)
Changed 7 years ago by
Attachment: | dojo_ganttchart.html added |
---|
comment:3 Changed 7 years ago by
Owner: | set to JayZ(zhouxiang) |
---|---|
Status: | new → assigned |
comment:4 Changed 5 years ago by
Milestone: | tbd → 1.12 |
---|---|
Resolution: | → patchwelcome |
Status: | assigned → closed |
Given that no one has shown interest in creating a patch in more than a year, I'm closing this as patchwelcome. Please let us know if you would like to get involved in helping make this change to Dojo!
dojo ganntchart.html