Dynamic page with JSF
        Posted  
        
            by Milan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Milan
        
        
        
        Published on 2010-03-29T20:14:06Z
        Indexed on 
            2010/03/29
            20:23 UTC
        
        
        Read the original article
        Hit count: 435
        
Hello everybody!
I need to make dynamic web-page/form in JSF. Dynamic: In runtime I get the number of input fields Ill have together with buttons. I'll try to demonstrate you what I need to make.
inputField1 inputField2 inputField3 BUTTON1
inputField4 inputField5 BUTTON2
inputField6 inputFiled7 inputField8 inputField9 BUTTON3
I hope you understand me what I want to make. So I when I click on some of the buttons I have to collect the data from the input fields and do something with the data. If I click BUTTON1 I collect data from inputField1 inputField2 inputField3 BUTTON2 inputField4 inputField5, etc.
Probably I should create the input fields programmatically and group them in forms.
Any idea how to do it? Any idea?
© Stack Overflow or respective owner