Glad it worked! If you need any assistance setting it up, let me know. Here’s
the basic server block I use to make it work, if others are interested:
server {
listen 80;
location / {
# don't cache it
proxy_no_cache 1;
# even if cached, don't try to use it
To make Crux work within popups, simply dispatch the ADD_BEAN event for the
content before opening it. For example:
var somePopupContent:SomePopupContent = new SomePopupContent();
dispatchEvent(new BeanEvent(BeanEvent.ADD_BEAN, somePopupContent));
var popup:PopUp = new PopUp();
popup.modal = tru
Thank you very much Brian. It worked.
I would like to know how I can set up a local instance of Nginx that
proxies to my backend. I see a lot of benefits in having this capability.
Regards,
On Sun, Oct 31, 2021 at 8:43 AM Roman Isitua wrote:
> Thanks for this response. I will certainly try t
I can confirm that crux setter injection does not work inside pop up. The
work around I have come up with is to do the setter injection in the parent
view then pass the variable to my pop.
By setter injection I mean,
[Inject( source = "acctController.estateSearchList", bind = "true" )]
p
Hi Greg, thanks for replying.
The renderers are in the main application, in a list of 7 fixed registers.
> Another thing to check is to make sure the package filtering on the
> JSStageEvents is not excluding your renderers from having the simulated
> events being created.
I have is this correc