CurrencyField
CurrencyField 1.0
CurrencyField is a component that fomats the Text as decimal values while user types it.
Sample code
import org.vaadin.turim.ui.CurrencyField; import com.vaadin.Application; import com.vaadin.ui.*; public class Currency_fieldApplication extends Application { @Override public void init() { Window mainWindow = new Window("Currency_field Application"); Label label = new Label("CurrencyField Example"); CurrencyField currenceField = new CurrencyField(); currenceField.setWidth("150px"); mainWindow.addComponent(label); mainWindow.addComponent(currenceField); setMainWindow(mainWindow); } }
Links
Compatibility
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
- 2012-08-13
- Maturity
- EXPERIMENTAL
- License
- Apache License 2.0
Compatibility
- Framework
- Vaadin 6.0+
- Vaadin 7.0+
- Browser
- Browser Independent
CurrencyField - Vaadin Add-on Directory
CurrencyField 1.0CurrencyField is a component that fomats the Text as decimal values while user types it.
Thiago Turim