我为项目创建了日期窗口小部件。
n对对象的setProperty和getProperty使用相同的小部件。
public TextBox getTimeTxtbx() {
// TODO Auto-generated method stub
timebx =new TextBox();
timebx.setReadOnly(true);
final PopupPanel popupPanel=new PopupPanel(true);
final DatePicker datePicker=new DatePicker();
datePicker.addValueChangeHandler(new ValueChangeHandler<Date>() {
public void onValueChange(ValueChangeEvent<Date> event) {
// TODO Auto-generated method stub
Date date=event.getValue();
timebx.setText(DateTimeFormat.getFormat("EEE MMM dd HH:mm:ss z yyyy").format(date));
popupPanel.hide();
}
});
popupPanel.setWidget(datePicker);
timebx.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
// TODO Auto-generated method stub
String strDate = timebx.getText();
System.out.println(" strDate " +strDate);
DateTimeFormat format = DateTimeFormat.getFormat("[EEE MMM dd HH:mm:ss z yyyy]");
try {
Date selDate = (Date)format.parse(strDate);
datePicker.setValue(selDate, true);
} catch(Exception pe){
// setting current date
System.out.println("error" +pe);
datePicker.setValue(new Date(), true);
}
int x=timebx.getAbsoluteLeft();
int y=timebx.getAbsoluteTop();
popupPanel.setPopupPosition(x, y+20);
popupPanel.show();
}
});
return timebx;
}
public void setTimebx(String string) {
// TODO Auto-generated method stub
timebx.setText(string);
}
我在flexTable中将这个小部件添加到不同的gui类
中flexTable.setWidget(i, j,textBoxDisplay.getTimeTxtbx());
textBoxDisplay.setTimebx(customProperty.getValues().toString());
在flexTable中,上面的代码位于iterator
内,名为两次。
喜欢在Image:testDate中收到了。
当我点击testDate时,已接收的值已更改
被修改
public ListBox getBooleanBox() {
// TODO Auto-generated method stub
selectBoolean = new ListBox(false);
//selectBoolean.setName(title);
selectBoolean.setStyleName("cmis-Customproperties-TextBox");
selectBoolean.setSize("150px", "20px");
selectBoolean.addItem("True","True");
selectBoolean.addItem("False", "False");
return selectBoolean;
}
public void setBooleanBox(String value){
int itemCount = selectBoolean.getItemCount();
for(int i = 0 ;i < itemCount;i++){
if(selectBoolean.getItemText(i).equalsIgnoreCase(value)){
selectBoolean.setSelectedIndex(i);
}
}
}
添加flexTable
customPropertyTabel.setWidget(i, j,textBoxDisplay.getBooleanBox());
textBoxDisplay.setBooleanBox(removeSymbol(customProperty.getValues().toString()));
这是完美的。 我得到了正确的价值。
答案 0 :(得分:1)
在我看来,textBoxDisplay
是testingDate和receivedOn的同一个小部件实例。这意味着如果添加了receivedOn,它将覆盖testingDate,因此当您单击testingDate的图标时,您将获得弹出窗口。因此,对于testingDate和receivedOn,您需要textBoxDisplay
,例如:textBoxDisplayTestingDate
和textBoxDisplayReceivedOn
答案 1 :(得分:1)
这是实施中的引用问题。
在getTimeTxtbx
的第二次迭代中(当您创建Received On文本框时),您已将timebx
实例中的局部变量textBoxDisplay
设置为新的引用,即Received On文本框。您的datePicker
onValueChange
实施设置了timebx
上的文字,因此在第二次迭代时,已设置已接收文本框而不是testingDate
文本框。
尝试在迭代期间使用TextBoxDisplay
的新实例。
TextBoxDisplay textBoxDisplay = new TextBoxDisplay();
flexTable.setWidget(i, j,textBoxDisplay.getTimeTxtbx());
textBoxDisplay.setTimebx(customProperty.getValues().toString());