@list.hide | Hides this column in a formatted list of results | | |
@list.code(attributes?) |
Uses a code format to represent this column in a
formatted list of results
|
lang: string
numbers: boolean
inline: boolean
trim: boolean
ltrim: boolean
rtrim: boolean
|
@list.code
@list.code(lang "en" trim true)
|
@list.color(attributes?) |
Uses a code color to represent this column in a
formatted list of results
| box: boolean text: boolean |
@list.color
@list.color(box true text true)
|
@list.country(attributes?) |
Uses a country format to represent this column
in a formatted list of results
| flag: boolean text: boolean |
@list.country
@list.country(flag true text true)
|
@list.currency(attributes?) |
Uses a currency format to represent this column
in a formatted list of results
|
flag: boolean
text: boolean
|
@list.currency
@list.currency(flag true text true)
|
@list.date(attributes?) |
Uses a date format to represent this column
in a formatted list of results
|
locale: string
format: string
|
@list.date
@list.date(locale "en" format "MMMM D, YYYY, h:mm:ss a")
|
@list.email |
Uses an email format to represent this column in a
formatted list of results
| | |
@list.formula(attributes) |
Outputs the value of the given formula in a formatted list of results
|
formula: string
data: object
|
@list.formula(formula "{x} + {this} + {y}" data { x 3 y 4 })
|
@list.html(attributes?) |
Uses a raw HTML format to represent this
column in a formatted list of results
|
ordered: boolean
indent: number
spacing: number
|
@list.html
@list.html({ ordered true indent 10 spacing 10 })
|
@list.image |
Uses a image format to represent this column
in a formatted list of results
| | |
@list.imagelist |
Uses an image carousel to represent this column in a
formatted list of results. Ideally for an array of strings.
| | |
@list.json |
Uses a json format to represent this column in a formatted
list of results. Ideally for arrays or objects.
| | |
@list.link |
Uses a clickable link to represent this column
in a formatted list of results
| | |
@list.list |
Uses a list (ordered or unordered) to represent this
column in a formatted list of results. Ideally for an
array of strings
| | |
@list.markdown |
Converts the column value from markdown to raw HTML
to represent this column in a formatted list of results
| | |
@list.metadata(attributes?) |
Outputs the keys and values of the columns value in
tabular format. Ideally for a key value object.
|
padding: number
align: left|right|center
format: boolean
|
@list.metadata
@list.metadata({ padding 10 align "left" format true })
|
@list.number(attributes?) |
Uses a number format to represent this column in
a formatted list of results
|
separator: string
decimal: string
decimals: number
absolute: boolean
|
@list.number
@list.number({ separator "," decimal "." decimals 4 absolute true })
|
@list.overflow(attributes?) |
Uses a format that considers text overflows to represent
this column in a formatted list of results
|
length: number
words: boolean
hellip: boolean
|
@list.overflow
@list.overflow({ length 10 words true hellip true})
|
@list.phone(attributes?) |
Uses a phone format to represent this column in a
formatted list of results
| label: string |
@list.phone
@list.phone({ label "Call Me Maybe" })
|
@list.rating(attributes?) |
Uses a rating format to represent this column
in a formatted list of results
|
max: number
remainder: boolean
round: round|ceil|floor
spacing: number
|
@list.rating
@list.rating({ max 5 remainder true round "floor" spacing 10 })
|
@list.separated(attributes?) |
Uses a separator format to represent this column in a
formatted list of results. Ideally for an array of strings.
| separator: string |
@list.separated
@list.separated({ separator ", " })
|
@list.table(attributes?) |
Uses a tablular format to represent this column in a formatted
list of results. Ideally for an array of objects.
|
top: boolean
left: boolean
right: boolean
padding: number
align: left|right|center
background: color
border: color
header: color
stripe: color
|
@list.table
@list.table({ align "left" top true padding 100 background "blue" header "#CCC" })
|
@list.taglist(attributes?) |
Uses a tag list format to represent this column in a formatted
list of results. Ideally for an array of strings.
|
curved: boolean
rounded: boolean
pill: boolean
info: boolean
warning: boolean
success: boolean
error: boolean
muted: boolean
primary: boolean
color: color
secondary: boolean
outline: boolean
solid: boolean
transparent: boolean
|
@list.taglist
@list.taglist({ curved true info true outline true })
|
@list.template(attributes) |
Uses a template to generate a text to represent
this column in a formatted list of results
| template: string | @list.template({ template "{{foo}} and {{bar}}" }) |
@list.text(attributes?) |
Uses a text format to represent this column in
a formatted list of results
|
upper: boolean
lower: boolean
capital: boolean
|
@list.text
@list.text({ upper true })
|
@list.yesno(attributes?) |
Converts a boolean to a string representation to
represent this column in a formatted list of results
| yes: string no: string |
@list.yesno
@list.yesno({ yes "Yep" no "Nah" })
|