Retrieving Arguments from the URL

If a view file is invoked with arguments, as in:

http://localhost:8080/archibus/schem...2&name3=value3

you can retrieve the URL arguments using client-side JavaScript objects.

For instance:

for (var name in window.location.parameters) { var value = window.location.parameters[name]; }

Files:
schema/ab-products/solutions/programming/view/ab-ex-prg-url-parameters.axvw
schema/ab-products/solutions/programming/view/ab-ex-prg-url-parameters.js