Directory

← Back

DateFieldExt

Extension of DateField

Author

Rating

Popularity

<100

Extension of Vaadin's DateField ui component. People usually come up with issue of some not yet implemented features in Vaadin. Such as not support with 12h and 24h switch of DateField. So Custom UI aims to extend the ability of common UI components. It's not fully all issues right now.You can report your issue, I'll help to add your feature if I can.

Features:

  1. Support 12h and 24h switch of DateField

Sample code

public class CustomUIWidgetsetApplication extends Application {
	/**
	 * 
	 */
	private static final long serialVersionUID = -3764012561397333733L;

	@Override
	public void init() {
		
		Window mainWindow = new Window("Sampleinvientchart2 Application");		
		mainWindow.setSizeFull();
        
        CustomDateField df = new CustomDateField();
        df.setbTwelveHourClock(false);
        mainWindow.addComponent(df);
        mainWindow.addComponent(new WidgetSetTest());
        
		setMainWindow(mainWindow);
	}

}

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Released
2013-01-16
Maturity
EXPERIMENTAL
License
Apache License 2.0

Compatibility

Framework
Vaadin 6.0+
Browser
Internet Explorer
Internet Explorer
Internet Explorer
Firefox
Opera
Safari
Google Chrome
Internet Explorer
iOS Browser

DateFieldExt - Vaadin Add-on Directory

Extension of DateField DateFieldExt - Vaadin Add-on Directory
Extension of Vaadin's DateField ui component. People usually come up with issue of some not yet implemented features in Vaadin. Such as not support with 12h and 24h switch of DateField. So Custom UI aims to extend the ability of common UI components. It's not fully all issues right now.You can report your issue, I'll help to add your feature if I can. Features: 1. Support 12h and 24h switch of DateField

DateFieldExt version 1.0.0
null

Online