Stadium
  • Home
  • Academy
  • How it works
    • Designer
    • Application Manager
    • Application users and roles
    • Designing applications
    • User API
  • Features
    • Application
    • Create a Form
    • Embedded Files
    • Events
    • Expression Editor
    • Pages
    • Preview
    • Publish
    • Scripts and Event Handlers
    • Session Variables
    • Settings
    • Styles
    • StyleSheet
    • Templates
    • Types
    • Validations Cheat Sheet
  • Connectors
    • Database Connector
    • File System Connector
    • Web Service Connector
  • Controls
    • Button
    • Chart
    • Checkbox
    • Checkbox List
    • Container
    • Data Grid
    • Date Picker
    • Drop Down
    • Flexbox
    • Grid
    • Image
    • Label
    • Link
    • Menu
    • Panel
    • Radio Button List
    • Repeater
    • Table
    • Text Box
    • Upload File
  • Actions
    • Async
    • Call Web Service
    • Decision (If/Else)
    • Display Message Box
    • Download File
    • For Each
    • Java Script
    • Navigate To Page
    • Notification
    • Set Value
    • Variable
    • While
  • Release Notes
    • 6.12.3272
    • 6.12.3270
    • 6.12.3268
    • 6.12.3264
    • 6.11.3223
    • 6.11.3221
    • 6.11.3220
    • 6.11.3218
    • 6.11.3210
    • 6.10.3155
    • 6.10.3151
    • 6.9.3102
    • 6.8.3100
    • 6.7.3096
    • 6.6.3082
    • 6.6.3081
    • 6.6.3080
    • 6.6.3075
    • 6.5.3055
    • 6.4.3036
    • 6.4.3034
    • 6.4.3033
    • 6.3.3019
    • 6.2.2999
    • 6.2.3001
    • 6.1.2990
    • 6.0.2972
    • 6.0.2970
    • 6.0.2969
Powered by GitBook
On this page
  • Properties
  • Assigning data to a Link
  • Events

Was this helpful?

  1. Controls

Link

PreviousLabelNextMenu

Last updated 8 months ago

Was this helpful?

The Link control renders as standard <a> </a> tags.

To make the Link work, the Click of the Link has to be created and the NavigateToPage action must be added to the handler.



Properties

  1. Text

    The text to be shown in the link.

  2. Url

    The url of the link.

  3. Open in New Window

    To open the link in a new tab.

  4. Visible

    Set to False if you don't want this control to render on the page and be visible to the user.


Assigning data to a Link

Example:

To display a link containing a specific value as text:

Example:

To include a URL parameter with a link:

  1. Create the destination page.

    • In the page's Properties section, add a parameter for the page.

  2. Create a Click Event for the link.

  3. Add a NavigateToPage action to the Click Event handler

    • Select your destination page

    • Select the value to assign to the parameter


Events

  1. Click

    An event that triggers when the link is clicked.

Add a action to assign the value from the query to the Link's Text property.

On the destination page the parameter will be available to assign (using ) to a control or to a variable for further use in queries or other actions.

SetValue
SetValue
Event
Event
Add a Link