ItEr47S11CUVisualizacionResponsabilidadesTRaballoNaPlanificacionItEr46S12: Disabling start and end dates on a task basis.

This commit is contained in:
Óscar González Fernández 2010-02-15 00:57:24 +01:00
parent c6d51fc817
commit 073350fa4f

View file

@ -356,7 +356,9 @@ public class LeftTasksTreeRow extends GenericForwardComposer {
getNameBox().setValue(task.getName());
getNameBox().setTooltiptext(task.getName());
getStartDateBox().setValue(task.getBeginDate());
getStartDateBox().setDisabled(!task.canBeExplicitlyMoved());
getEndDateBox().setValue(task.getEndDate());
getEndDateBox().setDisabled(!task.canBeExplicitlyResized());
getStartDateTextBox().setValue(asString(task.getBeginDate()));
getEndDateTextBox().setValue(asString(task.getEndDate()));
}