List of usage examples for com.google.gwt.user.client.ui TableListener interface-usage
From source file au.com.gworks.gwt.petstore.client.CartView.java
public class CartView extends Composite implements ClickListener, CartController.CartListener, TableListener, KeyboardListener { private EastWestHorizPanels groupBarContainer; private DivPanel optionsBar = new DivPanel(); private FlexTable items = new FlexTable(); private DivPanel container = new DivPanel();
From source file au.com.gworks.gwt.petstore.client.StoreSearchController.java
public class StoreSearchController extends AbstractPageController implements TableListener, SearchBar.Listener { private StoreSearchView view; private ProductInfo[] model; public void setUp(StoreCoordinator coord) { super.setUp(coord);
From source file client.template.panel.ListPanel.java
/**
* Generic class to represent a list page. This is the Read-Tasks together with
* update and delete from CRUD.
*
* @author gassen
*/
From source file com.apress.progwt.client.widget.datepicker.LongRangePicker.java
/**
* Make an easier way to pick dates in the distant past
*
* @author Jeff Dwyer
*
*/
From source file com.gtl.fonecta.client.GwtSmppSim.java
@SuppressWarnings("deprecation") class SortableTable extends FlexTable implements Sortable, TableListener { // Holds the current column being sorted private int sortColIndex = -1;
From source file com.pdmaf.ui.gwt.client.table.SortableTable.java
public class SortableTable extends FlexTable implements Sortable, TableListener { // Holds the current column being sorted private int sortColIndex = -1; // Holds the current direction of sort: Asc/ Desc
From source file no.poltilbud.site.client.widget.SortableTable.java
public class SortableTable extends FlexTable implements Sortable, TableListener { // Holds the current column being sorted private int sortColIndex = -1; // Holds the current direction of sort: Asc/ Desc
From source file org.auroraide.client.ui.simpleSortableTable.SortableTable.java
public class SortableTable extends FlexTable implements Sortable, TableListener { // Holds the current column being sorted private int sortColIndex = -1; // Holds the current direction of sort: Asc/ Desc
From source file org.drools.brms.client.table.SortableTable.java
/** * A sortable table widget. Extends the GWT Grid widget. * (more performant then FlexTable). */ public class SortableTable extends Grid implements TableListener {
From source file org.gwm.splice.client.form.ResultListGrid.java
public class ResultListGrid extends Grid implements TableListener { public static final int CHECKBOX_WIDTH = 22; public static final int ICON_WIDTH = 20; private static final int EVENT_CELL_CLICKED = 0;