• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Problem encountered in JSF Frame work

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi every one ,

I would like to inform you that I am facing a problem for clearing the data for JSF Components . Here is a example .

Lets say we have screen 1 , screen 2 and screen 3 . we can navigate to screen 1 thru Screen 2 and Screen 3 . but the look and feel of screen will be changed depending on which screen you are coming. to be more specific while coming from screen 2 , we want the default behaviour of screen but while coming from screen 3 we want some specific behaviour .. disabling , hiding and making some fields mandatory etc ...


The Problrm happns when you come thru screen 3 and make it specific .. again if you want to come to screen 1 , it is not initializing JSF componets again .. it is using data from the previous screen's (Coming from Screen 3 what ever changes you made ) ...

can some body help me out to figure out this ??

Thanks in adavance

Regards
Kabir
 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by kabir agarwal:
Hi every one ,

I would like to inform you that I am facing a problem for clearing the data for JSF Components . Here is a example .

Lets say we have screen 1 , screen 2 and screen 3 . we can navigate to screen 1 thru Screen 2 and Screen 3 . but the look and feel of screen will be changed depending on which screen you are coming. to be more specific while coming from screen 2 , we want the default behaviour of screen but while coming from screen 3 we want some specific behaviour .. disabling , hiding and making some fields mandatory etc ...


The Problrm happns when you come thru screen 3 and make it specific .. again if you want to come to screen 1 , it is not initializing JSF componets again .. it is using data from the previous screen's (Coming from Screen 3 what ever changes you made ) ...

can some body help me out to figure out this ??

Thanks in adavance

Regards
Kabir



It would help if you provide the code of the managed beans for each screen and their corresponding scopes.

Regards.
 
kabir agarwal
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It would help if you provide the code of the managed beans for each screen and their corresponding scopes.

Regards.
=======================================================================

Here is d code :

<managed-bean>
<managed-bean-name>CTDR0008Fragment</managed-bean-name>
<managed-bean-class>ctd.CTDR0008Fragment</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>CTDR0007Fragment</managed-bean-name>
<managed-bean-class>ctd.CTDR0007Fragment</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>

Another common template is d menu.jspf

Now Menu has d hyper links for both CTDR008 as well as CTDR0007 and it will always be displayed . The problem triggers when we go through menu to CTDR0008 . after londing CTDR0008 , we click on a hyperlink which goes to CTDR0007. during the action of CTDR0008's hyperlink we are setting a flag in session and based on that we are enabling disabling components in CTDR0007 .

The problem happns it work fine when you go thru CTDR0008 to CTDR0007 . now after doing that again you try to reach CTDR0007 through menu .. it is still retaining the state of componets and not intiliazing it fresly .

Please let me know if need any more details.

Regards
Kabir
 
reply
    Bookmark Topic Watch Topic
  • New Topic