User's Manual

524 | Reference Dell Networking W-ClearPass Guest 6.4 | User Guide
In the above view (the guest_users view), the four columns displayed correspond to the username, role_
name, enabled, and expire_time fields.
Value Description
Display Expressions
data.username.bold() Displays the username string as bold text.
data.role_name Displays the name of the role.
Nwa_BooleanText(data.enabled, "Enabled",
"Disabled")
Displays either “Enabled” or “Disabled” depending on the
value of the enabled field.
(parseInt(data.do_expire) != 0) ? Nwa_
DateFormat(data.expire_time, "%Y-%m-%d
%H:%M") : "N/A"
Displays “N/A” if the account has no expiration time, or a
date and time string if an expiration time has been set.
JavaScript functions
Nwa_BooleanText(
value, if_true, if_false[, if_undefined])
Returns the value of if_true or if_false depending on
whether the value evaluates to a Boolean true or false,
respectively. If the value has an undefined type (in other
words. has not been set), and the if_undefined parameter
was provided, returns if_undefined.
Nwa_DateFormat(value, format) Converts a numerical value (UNIX time) to a string using
the date and time format string format. The format string
uses similar syntax to the NwaDateFormat() function. See
"Date/Time Format String Reference" on page 497 for a
full list of the supported format strings.
Nwa_FloatFormat(value, decimals) Converts a numerical value to a string, with the number
of decimal places specified in decimals.
Nwa_MinutesToNatural(value) Converts a numeric value measuring a time in minutes to
a natural time representation (such as “2 minutes”, “3
hours”, “11 days”).
Table 128: Display Expressions for Data Formatting