Difference between revisions of "Passing Values Using Parameters"

From SmartWiki
Jump to: navigation, search
Line 1: Line 1:
You can create [[External|external]] links using three techniques:
+
You can create links using several techniques:
 +
 
 +
In the context of a [[Portal|portal]] interface by using a link:
 +
* Create a [[Portal]] shortcut and associate the link with that shortcut.
 
   
 
   
 
In the context of a specific [[Application|application]] by using a [[Custom Field|custom field]]:
 
In the context of a specific [[Application|application]] by using a [[Custom Field|custom field]]:
Line 8: Line 11:
 
</pre>
 
</pre>
  
In the context of a [[Portal|portal]] interface by using a link:
+
 
* Create a [[Portal]] shortcut and associate the link with that shortcut.
 
  
  

Revision as of 10:06, 31 July 2009

You can create links using several techniques:

In the context of a portal interface by using a link:

  • Create a Portal shortcut and associate the link with that shortcut.

In the context of a specific application by using a custom field:

<input type="button" class=Button value="Button Label" onClick='parent.location.href="/urltopage?variable=@variable@"'/>




In either case the link can be web URL or local UNC type link.

Passing Parameters to the Link

You can pass parameters to the link. For URL type links the following syntax would be used:


urltopage?Firstname=@firstname@&lastname=@lastname@&email=@email@&address=@address@&address2=@address2@&phone=@phone@&extension=@uphoneext@ &city=@city@&province=@province@&postal=@postalcode@&homephone=@home phone@&companyname=@company name@&employeeid=@employee id@


SmartSimple will replace the variable references (@lastname@ etc) with values derived from the current user session.