Package org.vaadin.spring.samples.mvp.ui.component.selector

Examples of org.vaadin.spring.samples.mvp.ui.component.selector.MarketDayPicker


    @EventBusListenerMethod
    public void onInit(final Screen screen) {
        if (screen.getViewName().equals(DSRUpdateHourlyView.NAME) && screen.getAction().equals(Action.START)) {
            // initialize controls for use with this screen

            MarketDayPicker marketDayPicker = (MarketDayPicker) getViewProvider().getView(MarketDayPicker.NAME);
            marketDayPicker.addValueChangeListener(applicationContext.getBean(MarketDaySelectedListener.class));

            ParticipantSelector participantSelector = (AnyParticipantSelector) getViewProvider().getView(AnyParticipantSelector.NAME);
            participantSelector.addValueChangeListener(applicationContext.getBean(ParticipantSelectedListener.class));

            ControlButton fetchBtn = new ControlButton("Fetch", new ClickListener() {
View Full Code Here

TOP

Related Classes of org.vaadin.spring.samples.mvp.ui.component.selector.MarketDayPicker

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.