Minor bug fixing
* Added missing <br> tag at GanttPanel's mold * Changed this.uuid by this.id at TaskComponent's mold, as on this case it has different meanings * Added missing ">" symbol at TaskList's mold * Added missing </div> tag at TaskRow's mold FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
7a1e640547
commit
f3fd4b1325
4 changed files with 11 additions and 8 deletions
|
|
@ -4,13 +4,15 @@ function(out){
|
|||
this.domAttrs_(),
|
||||
'>');
|
||||
|
||||
out.push('<div id="ganttpanel"');
|
||||
out.push('<div id="ganttpanel">');
|
||||
for (var w = this.firstChild; w; w = w.nextSibling)
|
||||
w.redraw(out);
|
||||
out.push('</div>');
|
||||
|
||||
out.push('</div>');
|
||||
|
||||
out.push('<br>');
|
||||
|
||||
out.push('<div id="ganttpanel_scroller_x">',
|
||||
'<div id="ganttpanel_inner_scroller_x"></div>',
|
||||
'</div>');
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@ function(out){
|
|||
* onMouseOut="zkTasklist.hideTooltip('tasktooltip${self.uuid}');">
|
||||
* */
|
||||
out.push('<div ',this.domAttrs_(),
|
||||
' z.type="ganttz.task.Task" idTask="', this.uuid,'"',
|
||||
' z.type="ganttz.task.Task" idTask="', this.id,'"',
|
||||
' class="box" >');
|
||||
|
||||
out.push('<div class="task-labels">', this.getLabelsText(),'</div>');
|
||||
out.push('<div class="task-resources">');
|
||||
out.push('<div class="task-resources-inner">', this.getResourcesText(),'</div>');
|
||||
out.push('<div class="task-resources-inner">', this.getResourcesText(),'</div>');
|
||||
out.push('</div>');
|
||||
|
||||
out.push('<div class="completion"></div>');
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ function(out){
|
|||
|
||||
out.push('<div id="scroll_container">');
|
||||
out.push('<div z.type="gantt.tasklist.TaskList" z.autoz="true" ' + this.domAttrs_() + '>');
|
||||
out.push('<div id="listtasks"');
|
||||
out.push('<div id="listtasks">');
|
||||
for(var w = this.firstChild; w; w = w.nextSibling)
|
||||
w.redraw(out);
|
||||
out.push('</div');
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
function(out){
|
||||
out.push('<div id="'+ this.uuid + '" class="row" z.valor="boxid=' + this.uuid +'">');
|
||||
for(var w = this.firstChild; w; w = w.nextSibling)
|
||||
w.redraw(out);
|
||||
out.push('<div id="deadline'+ this.uuid + '" class="deadline"></div>');
|
||||
out.push('<div id="consolidatedline' + this.uuid + '" class="consolidatedline"></div>');
|
||||
for(var w = this.firstChild; w; w = w.nextSibling)
|
||||
w.redraw(out);
|
||||
out.push('<div id="deadline'+ this.uuid + '" class="deadline"></div>');
|
||||
out.push('<div id="consolidatedline' + this.uuid + '" class="consolidatedline"></div>');
|
||||
out.push('</div>');
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue