I was just battling with a multi-window wpf application yesterday trying to get one binding to work on another window then I gave up and stuffed everything to one window.
But, I noticed no way of binding in the form, (in a regular JSP page);
<ui:textField ...text="#{SessionBean1.choosePlaceAndTimeForm.checkOutDate}".../>
If there was some way to have a Session object alive for the duration of the WPF app and if somehow I could bind to it from every window. My life would be easier. Any suggestions?
According to this answer : WPF Application using a global variable
Either use the following Dictionary :
Which can be bound using (the key string is used without double quotes) :
Or implement a static class :