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:
Loredana Liccardo 2014-07-23 12:17:10 +00:00
parent a6e4f7eb61
commit 7e62798189
1 changed files with 9 additions and 10 deletions

View File

@ -1789,12 +1789,11 @@ public class GxtBorderLayoutPanel extends ContentPanel {
column = new ColumnConfig(); column = new ColumnConfig();
column.setId("index"); // column.setId("index");
column.setHeader("Index"); // column.setHeader("Index");
column.setWidth(100); // column.setWidth(100);
column.setSortable(false); // column.setSortable(false);
// configs.add(column);
configs.add(column);
for (int i = 0; i < listAttributes.size(); i++) { for (int i = 0; i < listAttributes.size(); i++) {
@ -2079,7 +2078,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
// showCreateTable // showCreateTable
// statement // statement
Result row = new Result("CreateTable", Result row = new Result("Create statement",
result.get(array[i].toString()) result.get(array[i].toString())
.getName()); .getName());
@ -2090,7 +2089,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
"Column Names")) { "Column Names")) {
// recover the // recover the
// column names // column names
Result row = new Result("Column Names", Result row = new Result("Column names",
result.get(array[i].toString()) result.get(array[i].toString())
.getName()); .getName());
@ -2103,7 +2102,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
// recover the // recover the
// column names // column names
Result row = new Result("NumberRows", Result row = new Result("Number of rows",
result.get(array[i].toString()) result.get(array[i].toString())
.getName()); .getName());
@ -2283,7 +2282,7 @@ public class GxtBorderLayoutPanel extends ContentPanel {
rootLogger.log(Level.INFO, "displaying table name" + tableName rootLogger.log(Level.INFO, "displaying table name" + tableName
+ " in the panel"); + " in the panel");
Result table = new Result("selected table is", tableName); Result table = new Result("Selected table", tableName);
// create column configuration // create column configuration
List<ColumnConfig> configs = new ArrayList<ColumnConfig>(); List<ColumnConfig> configs = new ArrayList<ColumnConfig>();