CheckBox代码不起作用没有编译时错误

时间:2013-01-07 09:51:33

标签: gwt

public SubMenuItemCommand(MenuObject menuItem,JsArray listOfMenu,ToothWidget toothWidget){this.menuItem = menuItem; this.listOfMenu = listOfMenu; this.toothWidget = toothWidget; }

cb1.addClickHandler(new ClickHandler(){

                public void onClick(ClickEvent event) {

                    System.out.println(menuItem.getImage());
                    boolean checked = ((CheckBox) event.getSource()).getValue();
                    if (checked) {
                        System.out.println("hello3");
                        int left = toothWidget.getToothImage().getAbsoluteLeft();
                        int top =  toothWidget.getVPanel().getAbsoluteTop();//toothWidget.getToothImage().getAbsoluteTop();
                        Image im = new Image();
                        im.setUrl("images/"+menuItem.getImg());
                        int offx = left;
                        int offy = top;     
                        final PopupPanel popup1 = new PopupPanel(true);
                        popup1.setStylePrimaryName("transparent");
                        popup1.setPopupPosition(Math.max(offx, 0),Math.max(offy, 0));
                        //popup.add(im);
                        ToothWidget wgt = new ToothWidget(toothWidget.getToothNumber(),menuItem.getImg(), toothWidget.getTeeth());
                        toothWidget.getTeeth().getMap().get(toothWidget.getToothNumber()).put(menuItem.getName(), wgt);
                        wgt.setMenu(toothWidget.getMenu());
                        wgt.setPanel(popup1);
                        popup1.add(wgt);
                        popup1.show();
                    }

                    else{
                        ToothWidget wgt = toothWidget.getTeeth().getMap().get(toothWidget.getToothNumber()).remove(menuItem.getName());
                        wgt.getPanel().hide();
                    }
                }
             });

1 个答案:

答案 0 :(得分:0)

通常这是路径问题。即图像位置不是您正在设置的。

如果您的gwt模块的公开文件夹中有 images 文件夹,则需要使用im.setUrl(GWT.getModuleBaseURL()+"/images/"+menuItem.getImg());

如果您的 war / images 中有图像,则需要使用
im.setUrl(GWT.getHostPageBaseURL()+"/images/"+menuItem.getImg());

此外,您始终可以使用FireFox / FireBug的网络/图像控制台来检查正在访问的URL。