This object allows direct manipulation of Gds Pinboards. Using this object can simplify Pinboards
within scripts if desired, however this script is optional and direct access to the request/response URL is
permitted.
Include /report/elink/gdso.js
No trans....@@ http://www.fieldpine.com
http://www.fieldpine.com
GdsPinboard(Name). Constructs a GdsPinboard object and associates it with the named pinboard.
GetValue( [Args] ). Gets the current value for this pinboard. This may take some time to respond and script will
be hung while this is executed. The optional parameter Args can be used to supply additional query parameters. (NB, Args for Px values may change before implementation)
GetValueWithPrompt(). Gets the current value for this pinboard prompting the user for any arguments that are
not defined. This function requires the script eLinkZLayerPopup.js has been included. If you are not using this functionality,
you cannot call this helper function and must implement your own prompting.
GetArgCount(). Returns the number of arguments present.
Properties
Description. A server supplied description of this Pinboard
Examples
This example shows a very simple access of a pinboard, being the internal build date/time of the GDS server in use.
<script>
var z = new GdsPinboard("fieldpineinternal.builddate");
alert( "Arguments: " + z.GetArgCount());
alert( z.GetValue() );
</script>