Hi i have a very customized button which will be image. It is an arrow that have text in it and a number imagine the image and in it the following:
over
10
How this can be done? Any ideas?
over
10
How this can be done? Any ideas?
IButton btn = new IButton(); btn.setSrc("/images/arrow.gif"); btn.setTitle("Over<br>10");
ImgButton imgButton = new ImgButton(); imgButton.setSrc("/images/arrow.gif"); imgButton.setWidth(75); imgButton.setHeight(59); imgButton.setShowRollOver(false); imgButton.setShowDown(true); final Label tick = new Label("33.33"); tick.setLeft(23); tick.setBottom(70); imgButton.addChild(tick); imgButton.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { } });
Comment