| 1 |  |  package org.kuali.student.common.ui.client.widgets.notification; | 
  | 2 |  |   | 
  | 3 |  |  import com.google.gwt.user.client.ui.HorizontalPanel; | 
  | 4 |  |  import com.google.gwt.user.client.ui.Image; | 
  | 5 |  |  import com.google.gwt.user.client.ui.Label; | 
  | 6 |  |  import com.google.gwt.user.client.ui.PopupPanel; | 
  | 7 |  |   | 
  | 8 |  |  public class LoadingDiv extends PopupPanel{ | 
  | 9 | 0 |          HorizontalPanel panel = new HorizontalPanel(); | 
  | 10 | 0 |          public LoadingDiv(){ | 
  | 11 | 0 |                  Image Image = new Image("images/common/twiddler3.gif"); | 
  | 12 | 0 |                  panel.add(Image); | 
  | 13 | 0 |                  panel.add(new Label("Loading...")); | 
  | 14 | 0 |                  this.setWidget(panel); | 
  | 15 | 0 |                  this.getElement().setAttribute("style", "z-index: 5; border: 1px solid grey;"); | 
  | 16 | 0 |          } | 
  | 17 |  |  } |