在文本框中设置日期?

时间:2012-07-24 08:54:06

标签: java gwt gwt2 gwt-widgets

我为项目创建了日期窗口小部件。

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内,名为两次enter image description here

喜欢在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()));

这是完美的。 我得到了正确的价值。

2 个答案:

答案 0 :(得分:1)

在我看来,textBoxDisplay是testingDate和receivedOn的同一个小部件实例。这意味着如果添加了receivedOn,它将覆盖testingDate,因此当您单击testingDate的图标时,您将获得弹出窗口。因此,对于testingDate和receivedOn,您需要textBoxDisplay,例如:textBoxDisplayTestingDatetextBoxDisplayReceivedOn

答案 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());