Hi, I have some question about Tomahawk Savestate component:
I create a simple for with 3 input boxes, and 1 submit button. I bind their
values to some backBean, which is marked as "request" scope.
And I have
<t:saveState value="#{backBean}"></t:saveState>
tag.
Before I added saveState tag, when I reopen a page in same browser - the
values of bean (and corresponding component values) were new (empty), after I
added saveState tag - backBean started to behave as Session bean, not as "view"
scope bean... I mean it shouldn't persist through different queries, right?
Thanks in advance.