| 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 |
|
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 1 |
Complexity Density: 0.2 |
|
| 8 |
|
public class LoadingDiv extends PopupPanel{ |
| 9 |
|
HorizontalPanel panel = new HorizontalPanel(); |
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
| 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 |
|
} |
| 17 |
|
} |