2009-10-01 18:46:46 +02:00
|
|
|
/*
|
2010-02-04 06:57:00 +01:00
|
|
|
* This file is part of NavalPlan
|
2009-10-01 18:46:46 +02:00
|
|
|
*
|
|
|
|
|
* Copyright (C) 2009 Fundación para o Fomento da Calidade Industrial e
|
|
|
|
|
* Desenvolvemento Tecnolóxico de Galicia
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
package org.zkoss.ganttz;
|
|
|
|
|
|
|
|
|
|
import java.beans.PropertyChangeEvent;
|
|
|
|
|
import java.beans.PropertyChangeListener;
|
|
|
|
|
import java.text.DateFormat;
|
2009-07-06 19:13:23 +02:00
|
|
|
import java.util.Arrays;
|
2009-04-14 17:51:03 +02:00
|
|
|
import java.util.Date;
|
2009-06-29 14:36:10 +02:00
|
|
|
import java.util.List;
|
2009-04-14 17:51:03 +02:00
|
|
|
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
2009-07-20 18:00:11 +02:00
|
|
|
import org.zkoss.ganttz.data.Task;
|
2009-09-30 23:30:52 +02:00
|
|
|
import org.zkoss.ganttz.util.ComponentsFinder;
|
2009-06-20 18:32:34 +02:00
|
|
|
import org.zkoss.util.Locales;
|
2009-06-20 18:32:33 +02:00
|
|
|
import org.zkoss.zk.ui.Component;
|
2009-07-06 19:13:23 +02:00
|
|
|
import org.zkoss.zk.ui.event.Event;
|
|
|
|
|
import org.zkoss.zk.ui.event.EventListener;
|
2009-06-29 14:36:10 +02:00
|
|
|
import org.zkoss.zk.ui.event.KeyEvent;
|
2009-07-05 17:15:31 +02:00
|
|
|
import org.zkoss.zk.ui.util.GenericForwardComposer;
|
2009-04-14 17:51:03 +02:00
|
|
|
import org.zkoss.zul.Datebox;
|
|
|
|
|
import org.zkoss.zul.Textbox;
|
2009-07-05 17:15:31 +02:00
|
|
|
import org.zkoss.zul.Treecell;
|
|
|
|
|
import org.zkoss.zul.api.Treerow;
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2009-07-20 15:37:39 +02:00
|
|
|
public class LeftTasksTreeRow extends GenericForwardComposer {
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2009-07-20 15:37:39 +02:00
|
|
|
public interface ILeftTasksTreeNavigator {
|
|
|
|
|
LeftTasksTreeRow getBelowRow();
|
2009-07-05 17:15:27 +02:00
|
|
|
|
2009-07-20 15:37:39 +02:00
|
|
|
LeftTasksTreeRow getAboveRow();
|
2009-07-05 17:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-20 15:37:39 +02:00
|
|
|
private static final Log LOG = LogFactory.getLog(LeftTasksTreeRow.class);
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2009-07-20 18:00:11 +02:00
|
|
|
private final Task task;
|
2009-04-14 17:51:03 +02:00
|
|
|
|
|
|
|
|
private Textbox nameBox;
|
|
|
|
|
|
2009-06-20 18:32:33 +02:00
|
|
|
private Textbox startDateTextBox;
|
|
|
|
|
|
|
|
|
|
private Textbox endDateTextBox;
|
|
|
|
|
|
2009-06-20 18:32:35 +02:00
|
|
|
private Datebox startDateBox;
|
|
|
|
|
|
|
|
|
|
private Datebox endDateBox;
|
|
|
|
|
|
|
|
|
|
private DateFormat dateFormat;
|
|
|
|
|
|
2009-07-20 15:37:39 +02:00
|
|
|
private final ILeftTasksTreeNavigator leftTasksTreeNavigator;
|
2009-07-05 17:15:27 +02:00
|
|
|
|
2009-07-20 18:00:11 +02:00
|
|
|
public static LeftTasksTreeRow create(Task bean,
|
2009-07-20 15:37:39 +02:00
|
|
|
ILeftTasksTreeNavigator taskDetailnavigator) {
|
|
|
|
|
return new LeftTasksTreeRow(bean, taskDetailnavigator);
|
2009-06-20 18:32:35 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-20 18:00:11 +02:00
|
|
|
private LeftTasksTreeRow(Task task,
|
2009-07-20 15:37:42 +02:00
|
|
|
ILeftTasksTreeNavigator leftTasksTreeNavigator) {
|
2009-07-20 18:00:11 +02:00
|
|
|
this.task = task;
|
2009-06-20 18:32:35 +02:00
|
|
|
this.dateFormat = DateFormat.getDateInstance(DateFormat.SHORT, Locales
|
|
|
|
|
.getCurrent());
|
2009-07-20 15:37:39 +02:00
|
|
|
this.leftTasksTreeNavigator = leftTasksTreeNavigator;
|
2009-06-20 18:32:35 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-20 18:00:11 +02:00
|
|
|
public Task getTask() {
|
|
|
|
|
return task;
|
2009-06-20 18:32:35 +02:00
|
|
|
}
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
public Textbox getNameBox() {
|
|
|
|
|
return nameBox;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNameBox(Textbox nameBox) {
|
|
|
|
|
this.nameBox = nameBox;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Datebox getStartDateBox() {
|
|
|
|
|
return startDateBox;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStartDateBox(Datebox startDateBox) {
|
|
|
|
|
this.startDateBox = startDateBox;
|
|
|
|
|
this.startDateBox.setCompact(true);
|
|
|
|
|
this.startDateBox.setFormat("dd/MM/yyyy");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Datebox getEndDateBox() {
|
|
|
|
|
return endDateBox;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-20 18:00:11 +02:00
|
|
|
public Task getData() {
|
|
|
|
|
return task;
|
2009-04-14 17:51:03 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-20 18:32:33 +02:00
|
|
|
/**
|
2009-06-29 14:36:09 +02:00
|
|
|
* When a text box associated to a datebox is requested to show the datebox,
|
|
|
|
|
* the corresponding datebox is shown
|
2009-06-20 18:32:33 +02:00
|
|
|
* @param component
|
|
|
|
|
* the component that has received focus
|
|
|
|
|
*/
|
2009-06-29 14:36:09 +02:00
|
|
|
public void userWantsDateBox(Component component) {
|
2009-06-20 18:32:33 +02:00
|
|
|
if (component == startDateTextBox) {
|
|
|
|
|
showDateBox(startDateBox, startDateTextBox);
|
|
|
|
|
}
|
|
|
|
|
if (component == endDateTextBox) {
|
|
|
|
|
showDateBox(endDateBox, endDateTextBox);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void showDateBox(Datebox dateBox, Textbox associatedTextBox) {
|
|
|
|
|
associatedTextBox.setVisible(false);
|
|
|
|
|
dateBox.setVisible(true);
|
|
|
|
|
dateBox.setFocus(true);
|
2009-06-29 14:36:09 +02:00
|
|
|
dateBox.setOpen(true);
|
2009-06-20 18:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-29 14:36:10 +02:00
|
|
|
private enum Navigation {
|
|
|
|
|
LEFT, UP, RIGHT, DOWN;
|
|
|
|
|
public static Navigation getIntentFrom(KeyEvent keyEvent) {
|
|
|
|
|
return values()[keyEvent.getKeyCode() - 37];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void focusGoUp(int position) {
|
2009-07-20 15:37:39 +02:00
|
|
|
LeftTasksTreeRow aboveDetail = leftTasksTreeNavigator.getAboveRow();
|
2009-06-29 14:36:10 +02:00
|
|
|
if (aboveDetail != null) {
|
2009-06-29 14:36:11 +02:00
|
|
|
aboveDetail.receiveFocus(position);
|
2009-06-29 14:36:10 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-29 14:36:11 +02:00
|
|
|
public void receiveFocus() {
|
|
|
|
|
receiveFocus(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void receiveFocus(int position) {
|
2009-07-06 19:13:23 +02:00
|
|
|
this.getTextBoxes().get(position).focus();
|
2009-06-29 14:36:11 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-29 14:36:10 +02:00
|
|
|
public void focusGoDown(int position) {
|
2009-07-20 15:37:39 +02:00
|
|
|
LeftTasksTreeRow belowDetail = leftTasksTreeNavigator.getBelowRow();
|
2009-06-29 14:36:10 +02:00
|
|
|
if (belowDetail != null) {
|
2009-06-29 14:36:11 +02:00
|
|
|
belowDetail.receiveFocus(position);
|
2009-06-29 14:36:12 +02:00
|
|
|
} else {
|
2009-07-20 15:37:42 +02:00
|
|
|
getListDetails().getGoingDownInLastArrowCommand().doAction();
|
2009-06-29 14:36:10 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-20 15:37:39 +02:00
|
|
|
private LeftTasksTree getListDetails() {
|
2009-07-05 17:15:31 +02:00
|
|
|
Component current = nameBox;
|
2009-07-20 15:37:39 +02:00
|
|
|
while (!(current instanceof LeftTasksTree)) {
|
2009-06-29 14:36:12 +02:00
|
|
|
current = current.getParent();
|
|
|
|
|
}
|
2009-07-20 15:37:39 +02:00
|
|
|
return (LeftTasksTree) current;
|
2009-06-29 14:36:12 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-29 14:36:10 +02:00
|
|
|
public void userWantsToMove(Textbox textbox, KeyEvent keyEvent) {
|
|
|
|
|
Navigation navigation = Navigation.getIntentFrom(keyEvent);
|
2009-07-06 19:13:23 +02:00
|
|
|
List<Textbox> textBoxes = getTextBoxes();
|
|
|
|
|
int position = textBoxes.indexOf(textbox);
|
2009-06-29 14:36:10 +02:00
|
|
|
switch (navigation) {
|
|
|
|
|
case UP:
|
|
|
|
|
focusGoUp(position);
|
|
|
|
|
break;
|
|
|
|
|
case DOWN:
|
|
|
|
|
focusGoDown(position);
|
|
|
|
|
break;
|
|
|
|
|
case LEFT:
|
|
|
|
|
if (position == 0) {
|
2009-07-06 19:13:23 +02:00
|
|
|
focusGoUp(getTextBoxes().size() - 1);
|
2009-06-29 14:36:10 +02:00
|
|
|
} else {
|
2009-07-06 19:13:23 +02:00
|
|
|
textBoxes.get(position - 1).focus();
|
2009-06-29 14:36:10 +02:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case RIGHT:
|
2009-11-03 20:38:03 +01:00
|
|
|
if (position < textBoxes.size() - 1) {
|
2009-07-06 19:13:23 +02:00
|
|
|
textBoxes.get(position + 1).focus();
|
2009-11-03 20:38:03 +01:00
|
|
|
} else {
|
2009-06-29 14:36:10 +02:00
|
|
|
focusGoDown(0);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
throw new RuntimeException("case not covered: " + navigation);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-06 19:13:23 +02:00
|
|
|
private List<Textbox> getTextBoxes() {
|
|
|
|
|
return Arrays.asList(nameBox, startDateTextBox, endDateTextBox);
|
2009-06-29 14:36:10 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-20 18:32:33 +02:00
|
|
|
/**
|
|
|
|
|
* When the dateBox loses focus the corresponding textbox is shown instead.
|
|
|
|
|
* @param dateBox
|
|
|
|
|
* the component that has lost focus
|
|
|
|
|
*/
|
|
|
|
|
public void dateBoxHasLostFocus(Datebox dateBox) {
|
|
|
|
|
if (dateBox == startDateBox) {
|
|
|
|
|
hideDateBox(startDateBox, startDateTextBox);
|
|
|
|
|
}
|
|
|
|
|
if (dateBox == endDateBox) {
|
|
|
|
|
hideDateBox(endDateBox, endDateTextBox);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void hideDateBox(Datebox dateBoxToDissapear,
|
|
|
|
|
Textbox associatedTextBox) {
|
|
|
|
|
dateBoxToDissapear.setVisible(false);
|
|
|
|
|
associatedTextBox.setVisible(true);
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
@Override
|
2009-07-05 17:15:31 +02:00
|
|
|
public void doAfterCompose(Component component) throws Exception {
|
|
|
|
|
super.doAfterCompose(component);
|
|
|
|
|
findComponents((Treerow) component);
|
2009-07-06 19:13:23 +02:00
|
|
|
registerListeners();
|
2009-04-14 17:51:03 +02:00
|
|
|
updateComponents();
|
2009-07-20 18:00:11 +02:00
|
|
|
task
|
2009-07-06 19:13:23 +02:00
|
|
|
.addFundamentalPropertiesChangeListener(new PropertyChangeListener() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void propertyChange(PropertyChangeEvent evt) {
|
|
|
|
|
updateComponents();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2009-07-06 19:13:23 +02:00
|
|
|
private void registerListeners() {
|
|
|
|
|
registerKeyboardListener(nameBox);
|
|
|
|
|
registerKeyboardListener(startDateTextBox);
|
|
|
|
|
registerKeyboardListener(endDateTextBox);
|
|
|
|
|
|
|
|
|
|
registerOnEnterListener(startDateTextBox);
|
|
|
|
|
registerOnEnterListener(endDateTextBox);
|
|
|
|
|
|
2009-07-06 20:01:27 +02:00
|
|
|
registerOnEnterOpenDateBox(startDateBox);
|
|
|
|
|
registerOnEnterOpenDateBox(endDateBox);
|
|
|
|
|
|
2009-07-06 19:13:23 +02:00
|
|
|
registerBlurListener(startDateBox);
|
|
|
|
|
registerBlurListener(endDateBox);
|
|
|
|
|
|
|
|
|
|
registerOnChange(nameBox);
|
|
|
|
|
registerOnChange(startDateBox);
|
|
|
|
|
registerOnChange(endDateBox);
|
2009-04-14 17:51:03 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-05 17:15:31 +02:00
|
|
|
private void findComponents(Treerow row) {
|
|
|
|
|
List<Object> rowChildren = row.getChildren();
|
2009-09-30 23:30:52 +02:00
|
|
|
List<Treecell> treeCells = ComponentsFinder.findComponentsOfType(Treecell.class,
|
2009-07-05 17:15:31 +02:00
|
|
|
rowChildren);
|
|
|
|
|
assert treeCells.size() == 3;
|
|
|
|
|
findComponentsForNameCell(treeCells.get(0));
|
|
|
|
|
findComponentsForStartDateCell(treeCells.get(1));
|
|
|
|
|
findComponentsForEndDateCell(treeCells.get(2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Datebox findDateBoxOfCell(Treecell treecell) {
|
|
|
|
|
List<Object> children = treecell.getChildren();
|
2009-09-30 23:30:52 +02:00
|
|
|
return ComponentsFinder.findComponentsOfType(Datebox.class, children).get(0);
|
2009-07-05 17:15:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Textbox findTextBoxOfCell(Treecell treecell) {
|
|
|
|
|
List<Object> children = treecell.getChildren();
|
2009-09-30 23:30:52 +02:00
|
|
|
return ComponentsFinder.findComponentsOfType(Textbox.class, children).get(0);
|
2009-07-05 17:15:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void findComponentsForNameCell(Treecell treecell) {
|
|
|
|
|
nameBox = (Textbox) treecell.getChildren().get(0);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-06 19:13:23 +02:00
|
|
|
private void registerKeyboardListener(final Textbox textBox) {
|
|
|
|
|
textBox.addEventListener("onCtrlKey", new EventListener() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onEvent(Event event) throws Exception {
|
|
|
|
|
userWantsToMove(textBox, (KeyEvent) event);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void registerOnChange(Component component) {
|
|
|
|
|
component.addEventListener("onChange", new EventListener() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onEvent(Event event) throws Exception {
|
|
|
|
|
updateBean();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void registerOnEnterListener(final Textbox textBox) {
|
|
|
|
|
textBox.addEventListener("onOK", new EventListener() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onEvent(Event event) throws Exception {
|
|
|
|
|
userWantsDateBox(textBox);
|
|
|
|
|
}
|
|
|
|
|
});
|
2009-07-06 20:01:27 +02:00
|
|
|
}
|
2009-07-06 19:13:23 +02:00
|
|
|
|
2009-07-06 20:01:27 +02:00
|
|
|
private void registerOnEnterOpenDateBox(final Datebox datebox) {
|
|
|
|
|
datebox.addEventListener("onOK", new EventListener() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onEvent(Event event) throws Exception {
|
|
|
|
|
datebox.setOpen(true);
|
|
|
|
|
}
|
|
|
|
|
});
|
2009-07-06 19:13:23 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-05 17:15:31 +02:00
|
|
|
private void findComponentsForStartDateCell(Treecell treecell) {
|
|
|
|
|
startDateTextBox = findTextBoxOfCell(treecell);
|
|
|
|
|
startDateBox = findDateBoxOfCell(treecell);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void findComponentsForEndDateCell(Treecell treecell) {
|
|
|
|
|
endDateBox = findDateBoxOfCell(treecell);
|
2009-11-08 20:21:45 +01:00
|
|
|
endDateBox.setDisabled(true);
|
2009-07-05 17:15:31 +02:00
|
|
|
endDateTextBox = findTextBoxOfCell(treecell);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-06 19:13:23 +02:00
|
|
|
private void registerBlurListener(final Datebox datebox) {
|
|
|
|
|
datebox.addEventListener("onBlur", new EventListener() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onEvent(Event event) throws Exception {
|
|
|
|
|
dateBoxHasLostFocus(datebox);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
public void updateBean() {
|
2009-07-06 19:13:24 +02:00
|
|
|
Date begin = getStartDateBox().getValue();
|
2009-07-20 18:00:11 +02:00
|
|
|
task.setName(getNameBox().getValue());
|
2009-11-08 20:26:15 +01:00
|
|
|
task.moveTo(begin);
|
2009-04-14 17:51:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateComponents() {
|
2009-07-20 18:00:11 +02:00
|
|
|
getNameBox().setValue(task.getName());
|
2009-12-24 14:18:08 +01:00
|
|
|
getNameBox().setTooltiptext(task.getName());
|
2009-07-20 18:00:11 +02:00
|
|
|
getStartDateBox().setValue(task.getBeginDate());
|
2010-02-15 00:57:24 +01:00
|
|
|
getStartDateBox().setDisabled(!task.canBeExplicitlyMoved());
|
2009-07-20 18:00:11 +02:00
|
|
|
getEndDateBox().setValue(task.getEndDate());
|
2010-02-15 00:57:24 +01:00
|
|
|
getEndDateBox().setDisabled(!task.canBeExplicitlyResized());
|
2009-07-20 18:00:11 +02:00
|
|
|
getStartDateTextBox().setValue(asString(task.getBeginDate()));
|
|
|
|
|
getEndDateTextBox().setValue(asString(task.getEndDate()));
|
2009-06-20 18:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String asString(Date date) {
|
|
|
|
|
return dateFormat.format(date);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Textbox getStartDateTextBox() {
|
|
|
|
|
return startDateTextBox;
|
2009-04-14 17:51:03 +02:00
|
|
|
}
|
2009-06-15 21:48:54 +02:00
|
|
|
|
2009-06-20 18:32:33 +02:00
|
|
|
public void setStartDateTextBox(Textbox startDateTextBox) {
|
|
|
|
|
this.startDateTextBox = startDateTextBox;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Textbox getEndDateTextBox() {
|
|
|
|
|
return endDateTextBox;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setEndDateTextBox(Textbox endDateTextBox) {
|
|
|
|
|
this.endDateTextBox = endDateTextBox;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
}
|