description |
---|
Tables for portal components. |
Tables can be used to display data to users in a grid format.
Tables consist of a data source and a series of columns. You can use PowerShell variables are a data source. A simple script could load all the services on the machine into a variable.
$Variables["Services"] = Get-Service
The table would then display a set number of properties as columns.
<Table DataSource="$Services">
<PropertyColumn Property="Name"></PropertyColumn>
<PropertyColumn Property="Status"></PropertyColumn>
</Table>
Property columns can provide custom content based on the row being rendered. Use the $Context
variable to reference the current row.
<Table DataSource="$Services">
<PropertyColumn Property="Name"></PropertyColumn>
<PropertyColumn Property="Status">
<Alert Message="$context.Status" />
</PropertyColumn>
</Table>
Actions columns are not tied to a particular property and are used for display actions such as buttons.
<Table DataSource="$Services">
<PropertyColumn Property="Name"></PropertyColumn>
<PropertyColumn Property="Status">
<Alert Message="$context.Status" />
</PropertyColumn>
<ActionColumn>
<Button OnClick="ShowStatus">Show Status</Button>
</ActionColumn>
</Table>
To reference the current row in the button click, use the $Context
parameter.
function ShowStatus {
param($Context)
$Message.Success($Context.Status.ToString())
}