i searched on internet but unfortunatel i could not find its signature.any help is appreciated.
Regards.
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
postComponentJumpEvent(): Jumps to another component. For example, in Webtop the page tabbar.jsp contains a JavaScript function that calls postComponentJumpEvent(). The parameters are the form ID (can be null), source component, (optional), target frame, (optional) event name, and (optional) event argument. For example, in the Webtop page titlebar.jsp:
function onSearch()
{
postComponentJumpEvent(null, "search", "content");
}
To open the new component in the same frame, use "_self” for the target frame
parameter.