Package nl.topicus.onderwijs.dashboard.web.components.table

Examples of nl.topicus.onderwijs.dashboard.web.components.table.TablePanel


    datasources.add(RequestsPerMinute.class);
    add(new BarGraphPanel("bargraph",
        new ListModel<Class<? extends DataSource<? extends Number>>>(
            datasources)));
    add(new StatusTablePanel("table"));
    add(new TablePanel("ns", Trains.class, WicketApplication.get()
        .getRepository().getKeys(Location.class).get(0), true));

    StackedTablesPanel tablestack = new StackedTablesPanel("tablestack");
    tablestack.addTable(new TablePanel(tablestack.nextTableId(),
        Commits.class, Summary.get(), false));
    tablestack.addTable(new TablePanel(tablestack.nextTableId(),
        Issues.class, Summary.get(), false));
    add(tablestack);

    add(new WeatherPanel("weather", WicketApplication.get().getRepository()
        .getKeys(Location.class).get(0)));
View Full Code Here

TOP

Related Classes of nl.topicus.onderwijs.dashboard.web.components.table.TablePanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.