Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-column-widget@94245 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
4256810620
commit
ed32f6cf34
|
@ -2408,3 +2408,35 @@ Compiling...
|
||||||
Compilation completed in 0.00 seconds
|
Compilation completed in 0.00 seconds
|
||||||
Removing invalidated units
|
Removing invalidated units
|
||||||
Finding entry point classes
|
Finding entry point classes
|
||||||
|
Public resources found in...
|
||||||
|
Translatable source found in...
|
||||||
|
Found 0 cached/archived units. Used 0 / 2719 units from cache.
|
||||||
|
Compiling...
|
||||||
|
50% complete (ETR: 4 seconds)
|
||||||
|
50% complete (ETR: 4 seconds)
|
||||||
|
50% complete (ETR: 4 seconds)
|
||||||
|
50% complete (ETR: 4 seconds)
|
||||||
|
50% complete (ETR: 4 seconds)
|
||||||
|
50% complete (ETR: 4 seconds)
|
||||||
|
60% complete (ETR: 3 seconds)
|
||||||
|
70% complete (ETR: 2 seconds)
|
||||||
|
80% complete (ETR: 1 seconds)
|
||||||
|
90% complete (ETR: 1 seconds)
|
||||||
|
100% complete (ETR: 0 seconds)
|
||||||
|
Compilation completed in 10.09 seconds
|
||||||
|
Removing invalidated units
|
||||||
|
Finding entry point classes
|
||||||
|
Public resources found in...
|
||||||
|
Translatable source found in...
|
||||||
|
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
|
||||||
|
Compiling...
|
||||||
|
Compilation completed in 0.00 seconds
|
||||||
|
Removing invalidated units
|
||||||
|
Finding entry point classes
|
||||||
|
Public resources found in...
|
||||||
|
Translatable source found in...
|
||||||
|
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
|
||||||
|
Compiling...
|
||||||
|
Compilation completed in 0.00 seconds
|
||||||
|
Removing invalidated units
|
||||||
|
Finding entry point classes
|
||||||
|
|
|
@ -55,6 +55,11 @@ import com.sencha.gxt.widget.core.client.grid.LiveToolItem;
|
||||||
import com.sencha.gxt.widget.core.client.toolbar.LabelToolItem;
|
import com.sencha.gxt.widget.core.client.toolbar.LabelToolItem;
|
||||||
import com.sencha.gxt.widget.core.client.toolbar.ToolBar;
|
import com.sencha.gxt.widget.core.client.toolbar.ToolBar;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author "Giancarlo Panichi"
|
||||||
|
*
|
||||||
|
*/
|
||||||
public class CodelistSelectionDialog extends Window {
|
public class CodelistSelectionDialog extends Window {
|
||||||
protected static final int WIDTH = 550;
|
protected static final int WIDTH = 550;
|
||||||
protected static final int HEIGHT = 520;
|
protected static final int HEIGHT = 520;
|
||||||
|
@ -85,17 +90,22 @@ public class CodelistSelectionDialog extends Window {
|
||||||
private TextButton select;
|
private TextButton select;
|
||||||
|
|
||||||
public CodelistSelectionDialog(EventBus eventBus) {
|
public CodelistSelectionDialog(EventBus eventBus) {
|
||||||
this.eventBus = eventBus;
|
|
||||||
Log.info("Dialog CodelistSelection");
|
Log.info("Dialog CodelistSelection");
|
||||||
|
this.eventBus = eventBus;
|
||||||
|
listeners = new ArrayList<CodelistSelectionListener>();
|
||||||
|
initWindow();
|
||||||
|
create();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void initWindow(){
|
||||||
setWidth(WIDTH);
|
setWidth(WIDTH);
|
||||||
setHeight(HEIGHT);
|
setHeight(HEIGHT);
|
||||||
res = ResourceBundle.INSTANCE;
|
res = ResourceBundle.INSTANCE;
|
||||||
setBodyBorder(false);
|
setBodyBorder(false);
|
||||||
setResizable(false);
|
setResizable(false);
|
||||||
setHeadingText("Select Codelist");
|
setHeadingText("Select Codelist");
|
||||||
listeners = new ArrayList<CodelistSelectionListener>();
|
setModal(true);
|
||||||
create();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void create() {
|
protected void create() {
|
||||||
|
|
Loading…
Reference in New Issue