|
In some cases it is required to send additional parameters with the navigation requests. There are two methods for that:
| 1. | Placing hidden input elements inside the navigator element.
All the input elements in the navigator element are included in the navigation requests. |
| 2. | Adding parameters with Javascript. After the Navigator objects is obtained, the additional request parameters can be added as follows prior to the navigation request. |
function NextPage(elm) {
var nav = NavMgr.getNavigator(elm);
nav.addRequestParameter('CAT_NO','55');
nav.navigateTo('nextPage','cp');
}
|

|