[Logo] Enterprise Client Community
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Messages posted by: mhanke  XML
Profile for mhanke -> Messages posted by mhanke [10]
Author Message
Thank you for the really nice support.
I've made a really simple example. It's not updating the label on every change and wait.

Code:
 @CCGenClass(expressionBase = "#{d.TestUI}")
 public class TestUI extends PageBean implements Serializable {
 
     private String text;
 
     @Override
     public String getRootExpressionUsedInPage() {
         return "#{d.TestUI}";
     }
 
     @Override
     public String getPageName() {
         return "/test.jsp";
     }
 
     public String getText() {
         return text;
     }
 
     public void setText(String text) {
         this.text = text;
     }
 
 }
 


Code:
 <f:view>
 <h:form>
 <f:subview id="testg_sv">
 <t:rowtitlebar id="g_2" />
 <t:rowheader id="g_3" />
 <t:rowbodypane id="g_4" >
 <t:row id="g_1" >
 <t:field id="g_7" flush="true" flushtimer="1000" text="#{d.TestUI.text}" width="100" />
 <t:label id="g_8" text="#{d.TestUI.text}" />
 </t:row>
 </t:rowbodypane>
 <t:rowstatusbar id="g_5" />
 <t:pageaddons id="g_pa"/>
 </f:subview>
 </h:form>
 </f:view>
 
I understand how it works but it does not work as expected.
Thank you for your quick reply. I've tested the FLUSHTIMER but it's not working correctly. If I set the FLUSHTIMER to 500 millis, it is not sent immediately.
Hi, I would like to implement "flush on modify" with a textfield. Is it possible?
Thank you very much. I had not really understood that the Page Beans are session scoped.
The first solution is not what I am looking for. My use case is that I want to have a list of objects in a class that is valid on the session. Just like @SessionBean in JSF. My PageBean is called by the UI, I dont know how to pass any session scoped data.
Hi, I would like to store and access data in session scope. I want to do it from a PageBean. How can I do that best?
Thank you very much. In my version of CC it's suppressheadline="true".
Hi, is there a way to hide the header of a column in FixedGrid?
 
Profile for mhanke -> Messages posted by mhanke [10]
Go to:   
Powered by JForum 2.1.6 © JForum Team