FileDocCategorySizeDatePackage
DynaTable.javaAPI DocExample1370Mon Aug 27 20:11:36 BST 2007com.google.gwt.sample.dynatable.client

DynaTable

public class DynaTable extends Object implements com.google.gwt.core.client.EntryPoint
The entry point class which performs the initial loading of the DynaTable application.

Fields Summary
Constructors Summary
Methods Summary
public voidonModuleLoad()

    // Find the slot for the calendar widget.
    //
    RootPanel slot = RootPanel.get("calendar");
    if (slot != null) {
      SchoolCalendarWidget calendar = new SchoolCalendarWidget(15);
      slot.add(calendar);

      // Find the slot for the days filter widget.
      //
      slot = RootPanel.get("days");
      if (slot != null) {
        DayFilterWidget filter = new DayFilterWidget(calendar);
        slot.add(filter);
      }
    }