I'm using a Redirect to URL action in a button (Apex 4.0.2) and I can't seem to figure out how to populate multiple page items correctly. I can use one parameter and the value is passed in; however, when I attempt to pass two only the first item is populated. I'm sure there's something wrong with my syntax, I just don't know what.
I'm using the $x() function that I found in another thread here, and as a sidebar, where can I find documentation on this function? There seems to be little information out there on it.
javascript:redirect('f?p=101:13:&SESSION.::NO::P13_REQ_ID,P13_REQUEST_NUMBER:'+$x('P3_REQUEST_ID').value,+$x('P3_REQ_NUMBER').value);
Both passed items are valid, because I can remove the comma from the param value string and the two passed item values are concatenated into the first param item.