gwt - celltable - добавление дополнительной строки - PullRequest
1 голос
/ 18 августа 2011

введите код. У меня есть таблица ячеек, а столбцы содержат некоторые числа. Я хочу добавить дополнительную строку в конце таблицы, которая будет содержать сумму для каждого столбца. Есть ли способ сделать это?

Ниже мой код:

   import java.util.*;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.cellview.client.CellTable;
import com.google.gwt.user.cellview.client.TextColumn;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.view.client.ListDataProvider;

public class TestProject implements EntryPoint 
{

 private static int totalSalary=0;
 private static class Contact 
 {
        private final String salary;
        private final String name;

        public Contact(String name, String salary) 
        {
          this.name = name;
          this.salary = salary;
        }
 }

private static List<Contact> CONTACTS = Arrays.asList(new Contact("John","100000"), 
                                                      new Contact("Mary", "200000"), 
                                                      new Contact("Zander", "300000"));
/**
 * This is the entry point method.
 */
public void onModuleLoad() 
{
    final CellTable<Contact> table = new CellTable<Contact>();

    // Create name column.
    TextColumn<Contact> nameColumn = new TextColumn<Contact>() 
    {
      @Override
      public String getValue(Contact contact) 
      {
        return contact.name;
      }
    };

    // Create address column.
    TextColumn<Contact> addressColumn = new TextColumn<Contact>() 
    {
      @Override
      public String getValue(Contact contact) 
      {
        totalSalary+=Integer.parseInt(contact.salary);
        return contact.salary;
      }
    };

    // Add the columns.
    table.addColumn(nameColumn, "Name");
    table.addColumn(addressColumn, "Salary");

    // Create a data provider.
    ListDataProvider<Contact> dataProvider = new ListDataProvider<Contact>();

    // Connect the table to the data provider.
    dataProvider.addDataDisplay(table);

    // Add the data to the data provider, which automatically pushes it to the
    // widget.
    final List<Contact> list = dataProvider.getList();
    for (Contact contact : CONTACTS) {
      list.add(contact);
    }

    // We know that the data is sorted alphabetically by default.
    table.getColumnSortList().push(nameColumn);

    Contact total = new Contact("Total: ",totalSalary+"");
    list.add(total);



    // Add it to the root panel.
    RootPanel.get().add(table);
    //RootPanel.get().add(add);
}

}

Ответы [ 3 ]

2 голосов
/ 19 августа 2011

Также я бы предложил использовать аргумент нижнего колонтитула при добавлении столбца: addColumn (Column col, Header header)

1 голос
/ 18 августа 2011

Когда вы имеете в виду итоговые значения, я не совсем уверен, что вы имеете в виду, но это похоже на ваш код, но я добавил кнопку, которая добавит строку, которую вы, как вы можете это сделать, и просто добавит строку.

/**
 * Entry point classes define <code>onModuleLoad()</code>.
 */
public class TestGwt implements EntryPoint {

     private static class Contact {
            private final String address;
            private final String name;

            public Contact(String name, String address) {
              this.name = name;
              this.address = address;
            }
          }

    private static List<Contact> CONTACTS = Arrays.asList(new Contact("John",
    "123 Fourth Road"), new Contact("Mary", "222 Lancer Lane"), new Contact(
    "Zander", "94 Road Street"));
    /**
     * This is the entry point method.
     */
    public void onModuleLoad() {
         // Create a CellTable.
        final CellTable<Contact> table = new CellTable<Contact>();

        // Create name column.
        TextColumn<Contact> nameColumn = new TextColumn<Contact>() {
          @Override
          public String getValue(Contact contact) {
            return contact.name;
          }
        };

        // Make the name column sortable.
        nameColumn.setSortable(true);

        // Create address column.
        TextColumn<Contact> addressColumn = new TextColumn<Contact>() {
          @Override
          public String getValue(Contact contact) {
            return contact.address;
          }
        };

        // Add the columns.
        table.addColumn(nameColumn, "Name");
        table.addColumn(addressColumn, "Address");

        // Create a data provider.
        ListDataProvider<Contact> dataProvider = new ListDataProvider<Contact>();

        // Connect the table to the data provider.
        dataProvider.addDataDisplay(table);

        // Add the data to the data provider, which automatically pushes it to the
        // widget.
        final List<Contact> list = dataProvider.getList();
        for (Contact contact : CONTACTS) {
          list.add(contact);
        }

        // We know that the data is sorted alphabetically by default.
        table.getColumnSortList().push(nameColumn);

        Button add = new Button("Add Row");
        add.addClickHandler(new ClickHandler() {

            @Override
            public void onClick(ClickEvent event) {
                list.add(new Contact(Integer.toString(table.getRowCount()),Integer.toString(table.getRowCount())));
            }
        });


        // Add it to the root panel.
        RootPanel.get().add(table);
        RootPanel.get().add(add);

      }



}

Надеюсь, это поможет. Я не уверен, что вы имеете в виду под общим, хотя в это окончательное поле в виде контакта можно добавить что угодно, даже если оно не обязательно, лучше использовать Generics для провайдера данных.но это даст тот же эффект с минимальным кодом

0 голосов
/ 06 февраля 2013
public void addNewRow(){                

    List<Contact> newContactLst = Arrays.asList(new Contact("TEST",
              "Sample"));

    int numRows = table.getRowCount();

    table.setRowCount(numRows+1);

    table.setRowData(numRows,newContactLst);

}
...