Hi all,
Was Somebody able to implement custom View Scope for JSF 1.x ?
I try some solutions but some problem appears in all of them.
This one was working ok ,...
Type: Posts; User: Tigran; Keyword(s):
Hi all,
Was Somebody able to implement custom View Scope for JSF 1.x ?
I try some solutions but some problem appears in all of them.
This one was working ok ,...
Hi,
Thank you for your fast reply, i'll try all this and write about result...
Regards,
Tigran
thanks for reply,
and is here something like applicationScope ? to put/get the objects from different sessions?
Hi all,
is there any mechanism for locking flow execution, I have to lock the flow when ONE user already run it.So i have to know somehow if somebody is working in flow and send other users for a...
Hi all,
question regarding to flows and variables, Is it possible to pass variable from one scope to another, i mean is there any visible scope for that where can i put my objects and use in...
Thank you for reply,
and another problem appears when i try to call webflow via Ajax from jsp page, resources do not loadded properly, it seems to me that the problem appears due to URL in address...
hi ,
what i have to include in a jsf page when i use sf:commandButton?
Am i need to include js files or not? i see that in some case it works ok without including anything but sometimes it do not...
Hi all,
I have a big problem with Spring ajax implementation.
I have a jsp page and i make an AJAX request with jQuery from it to a flow controller to render SWF in JSP. it looks like this
...
anyone can help me with this ?
Hi all,
I try to use sf:clientTextValidator with regex but with binding like
<sf:clientTextValidator regexp="#{model.regexpString}">
<h:inputText ....>
</sf:clientTextValidator>
...
Hi all,
is it possible to configure bean with factory-method (and other properties like this ) using annotations?
Thank you for your reply,
i think limiting the user's active flows is not solution ,cos how i understand it will delete the old flow on every new request.so for the online users it will be a little...
HI all,
I have a JSP/JSF/Facelet project and i want to add a SWF in some modules.
I did it in this way :
from some content pages i open AJAX request to the flow controller and render response in...
Hi Marten.
thank you for your fast reply , u were right i miss the thing about serialized/deserialized , so it's ok if the object changes it's hash code ,but the properties lost their values too ,...
hello,
I'm trying to put scope annotation on component like
@Component("myClass")
@Scope("session")
public class MyClass {
//content
}
Thank you for reply guys,
Actually my implementation of popup is very simple i just set popup=true attribute on view state and re render ui fragment on it...
But when popup appears there is no X...
HI all,
I have a simple question about SWF popups.
how can i close popup by myself for example if i want to add close button on it.
What java script function have to be called ? because by...
Hi Guys,
I have a simple question about annotations @Component and @Service.
What is the difference between them, and what exactly @Service mean ? how I understand they both register a...
Thank you all,
see you in next threads :)
Hello Keith,
Thank you for your fast reply , it's now clear to me how integration work's , so it's possible to use all JSF features in this integration , except actions and navigations which are...
Today I found out that all JSF phases invoked during request , only first time as it have to be invoked only 2 phases..so after integration JSF and SWF, JSF Phases invoked normal , but can somebody...
Hello Everybody,
I have a question about JSF's APIs in SWF.
I try to access
FacesCotext.getCurrentInstance() from action methods but everywhere it return null.
Only when i implement...
Anybody can help me with this ? :(
Hi Marten , Thank you for your fast reply
But it is still not clear to me where i have to define them ? could you please provide some little example of this? it will help me undestand better...
Hi all,
i'm now trying to implement Action interface and use it in my flow.
So everything is ok except that i have to register my Action in flow.xml as Var for example:
<var...