Package com.vaadin.ui

Examples of com.vaadin.ui.TooltipConfiguration


     * @see com.vaadin.tests.components.AbstractTestUI#setup(com.vaadin.server.
     * VaadinRequest)
     */
    @Override
    protected void setup(VaadinRequest request) {
        TooltipConfiguration ttc = super.getTooltipConfiguration();
        ttc.setMaxWidth(350);
        ttc.setOpenDelay(200);
        ttc.setCloseTimeout(200);
        ttc.setQuickOpenDelay(1000);
        ttc.setQuickOpenTimeout(1000);
        HorizontalLayout layout = new HorizontalLayout();
        layout.addComponent(makeButton("first"));
        layout.addComponent(makeButton("second"));
        addComponent(layout);

View Full Code Here

TOP

Related Classes of com.vaadin.ui.TooltipConfiguration

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.