ItEr07S07ArquitecturaClientesItEr06S03: Fixing bug. When a task is deleted a vertical scroll appeared.

Changes made on ganttpanel.dsp to avoid the creation of id ganttpanel twice on invalidation.
This commit is contained in:
Lorenzo Tilve 2009-05-06 09:38:34 +02:00 committed by Javier Moran Rua
parent eae256a297
commit 3763f322d0

View file

@ -1,16 +1,12 @@
<%@ taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c" %>
<%@ taglib uri="http://www.zkoss.org/dsp/zk/core" prefix="z" %>
<c:set var="self" value="${requestScope.arg.self}"/>
<div id="ganttpanel">
<div id="${self.uuid}" z.type="ganttz.ganttpanel.GanttPanel" ${self.outerAttrs}>
<c:forEach var="child" items="${self.children}">
${z:redraw(child, null)}
</c:forEach>
</div>
<div id="ganttpanel">
<c:forEach var="child" items="${self.children}">
${z:redraw(child, null)}
</c:forEach>
</div>
</div>