Hi,

I have a SubmitLink that submits the form and returns to the same page. But
I need it to jump to the result section.
I added an anchor:

form = new ShinyForm("myForm") {

            private static final long serialVersionUID =
-4058461619493381294L;

            protected void onComponentTag(ComponentTag tag)
            {
                   super.onComponentTag(tag);
                   StringBuilder b = new
StringBuilder(tag.getString("action").toString()).append("#result");
                   tag.put("action", b.toString());
            }
        };

The anchor appears in url and it jump in Google Chrome, but not in Mozilla.
In mozilla, I need to click reload for it to jump.

Thanks,
Anna

Reply via email to