I want to show popupPanel when I press the slideDown button, but at the beginning my popupPanel is hidden
using
popupPanel.getElement().setAttribute("style", "display:none");
but when I click on the slideDown button, it weakens very quickly
& my onClick code
@Override public void onClick(ClickEvent arg0) { if (arg0.getSource() == slideDown) { $(DOM.getElementById("popupPanel")).as(Effects).slideUp(Speed.SLOW); } }
Can I help you?
source share