renamed labels to show table details i the panel "Information Details" and column index removed from the dialog the shows the submitquery and samplings result.
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/databases-manager-portlet@98900 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
a6e4f7eb61
commit
7e62798189
|
@ -1789,12 +1789,11 @@ public class GxtBorderLayoutPanel extends ContentPanel {
|
|||
|
||||
column = new ColumnConfig();
|
||||
|
||||
column.setId("index");
|
||||
column.setHeader("Index");
|
||||
column.setWidth(100);
|
||||
column.setSortable(false);
|
||||
|
||||
configs.add(column);
|
||||
// column.setId("index");
|
||||
// column.setHeader("Index");
|
||||
// column.setWidth(100);
|
||||
// column.setSortable(false);
|
||||
// configs.add(column);
|
||||
|
||||
for (int i = 0; i < listAttributes.size(); i++) {
|
||||
|
||||
|
@ -2079,7 +2078,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
|
|||
// showCreateTable
|
||||
// statement
|
||||
|
||||
Result row = new Result("CreateTable",
|
||||
Result row = new Result("Create statement",
|
||||
result.get(array[i].toString())
|
||||
.getName());
|
||||
|
||||
|
@ -2090,7 +2089,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
|
|||
"Column Names")) {
|
||||
// recover the
|
||||
// column names
|
||||
Result row = new Result("Column Names",
|
||||
Result row = new Result("Column names",
|
||||
result.get(array[i].toString())
|
||||
.getName());
|
||||
|
||||
|
@ -2103,7 +2102,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
|
|||
// recover the
|
||||
// column names
|
||||
|
||||
Result row = new Result("NumberRows",
|
||||
Result row = new Result("Number of rows",
|
||||
result.get(array[i].toString())
|
||||
.getName());
|
||||
|
||||
|
@ -2283,7 +2282,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
|
|||
rootLogger.log(Level.INFO, "displaying table name" + tableName
|
||||
+ " in the panel");
|
||||
|
||||
Result table = new Result("selected table is", tableName);
|
||||
Result table = new Result("Selected table", tableName);
|
||||
// create column configuration
|
||||
List<ColumnConfig> configs = new ArrayList<ColumnConfig>();
|
||||
|
||||
|
|
Loading…
Reference in New Issue