WebObjects/Web Applications/Development/Examples/Anchors
< WebObjects < Web Applications < Development < ExamplesPut the following in the superclass for your components:
private String anchor; public void appendToResponse(WOResponse response, WOContext context) { if (anchor != null) { response.setHeader(context.componentActionURL() + "#" + anchor, "location"); response.setHeader("text/html", "content-type"); response.setHeader("0", "content-length"); response.setStatus(302); anchor = null; } else { super.appendToResponse(response, context); } } // appendToResponse
public String getAnchor() { return anchor; } public void setAnchor(String s) { anchor = s; }
In the component where we want to use an anchor you just put in
<a name="myanchor"></a>
and something like the following in the code where we want to jump to this anchor:
protected WOComponent doSometingAndJumpToAnchor() {
// do something :)
setAnchor("myanchor");
return null;
}
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.