0

How can i use the markInitialState() method? I want to save the initial state of my component.

Is markInitialState for this?

maxtorzito
  • 308
  • 7
  • 14

1 Answers1

1

markInitialState is for the container/context's use as indicated here. Use saveState(FacesContext ct) for your needs and restoreState(FacesContext ctx) to restore the same object. Cheers

kolossus
  • 20,559
  • 3
  • 52
  • 104