Directory

← Back

madura-vaadinsupport

Connects Vaadin with Madura Objects

Author

Rating

Place holder description

Sample code

// Register each Vaadin control with Madura. 
// Madura will update the control as necessary after this step.
MaduraSessionManager maduraSessionManager = getMaduraSessionManager();
maduraSessionManager.register(m_name);
maduraSessionManager.register(m_email);
maduraSessionManager.register(m_address);
maduraSessionManager.register(label_1); // this label's contents change when a rule fires. 
// For buttons (and menu items) we can choose specific button painters for certain implicit behaviour
// The SubmitButtonPainter stays disabled until all the required fields are completed without error.
maduraSessionManager.register(m_helpButton, new SimpleButtonPainter(m_maduraSessionManager));
maduraSessionManager.register(m_submitButton, new SubmitButtonPainter(m_maduraSessionManager));

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-10-07
Maturity
STABLE
License
Apache License 2.0

Compatibility

Framework
Vaadin 6.0+
Browser
Browser Independent
Online