Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the serialized result. | |||
object | true | true | java.lang.Object |
The Object to serialize in JSON. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the truncated text. | |||
varTruncated | false | false | java.lang.String |
Name of the exported variable for the truncated part. | |||
text | true | true | java.lang.String |
The text to truncate. | |||
truncateFrom | true | true | int |
Truncates the text if its length exceeds the given value. | |||
approximation | false | true | int |
The authorized approximation for the 'truncateFrom' limit in order to not truncate in the middle of an HTML tag. Defaults to '30'. | |||
labelShow | false | true | java.lang.String |
The label for the Show link. Defaults to '[Show]'. | |||
labelHide | false | true | java.lang.String |
The label for the Hide link. Defaults to '[Hide]'. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the evaluated result. | |||
string | true | true | java.lang.String |
The string to evaluate. | |||
isXmlEscape | false | false | boolean |
Specifies whether the given string is XML escaped by default. Defaults to 'false'. | |||
isJsEscape | false | false | boolean |
Specifies whether the given string is JS escaped by default. Defaults to 'false'. | |||
isHtmlEscape | false | false | boolean |
Specifies whether the given string is HTML escaped by default. Defaults to 'false'. | |||
isUrlEncode | false | false | boolean |
Specifies whether the given string is URL encoded by default. Defaults to 'false'. | |||
isHighlight | false | false | boolean |
Specifies whether the given string is highlighted by default. Defaults to 'true'. | |||
category | false | true | com.exalead.access.feedapi.AbstractCategory |
Specifies a MergedCategory to evaluate CATEGORY expressions. | |||
aggregation | false | true | java.lang.String |
Specifies on which aggregation the given category is based. Defaults to 'count'. | |||
facet | false | true | com.exalead.access.feedapi.MergedFacet |
Specifies a MergedFacet to evaluate FACET expressions. | |||
meta | false | true | com.exalead.access.feedapi.Meta |
Specifies a Meta to evaluate META expressions. | |||
entry | false | true | com.exalead.access.feedapi.Entry |
Specifies an Entry. Defaults to the first entry. | |||
feed | false | true | com.exalead.access.feedapi.ResultFeed |
Specifies a ResultFeed. Defaults to the ResultFeed of the current widget. Object is of type ResultFeed. | |||
feeds | false | true | java.util.Map |
Specifies a ResultFeed. Defaults to the ResultFeed of the current widget. Object is of type Map(String, ResultFeed). |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the escaped result. | |||
value | false | true | |
The value to escape. If empty it will escape the content of the tag. | |||
escapeType | false | false | java.lang.String |
Specifies the escape type to apply. The possible values are: 'JAVASCRIPT', 'HTML, 'XML', 'URL' and 'JSONVALUE'. Defaults to 'JAVASCRIPT'. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the unescaped result. | |||
value | false | true | |
The value to unescape. If empty it will unescape the content of the tag. | |||
escapeType | false | false | java.lang.String |
Specifies the escape type to apply. The possible values are: 'JAVASCRIPT', 'HTML, 'XML' and 'URL'. Defaults to 'JAVASCRIPT'. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the formatted result. | |||
value | false | true | double |
The value to format. If empty it will format the content of the tag. | |||
pattern | false | false | java.lang.String |
Specifies the pattern to apply according to the DecimalFormat class format. Defaults to '#' or '0.00' if percentage. | |||
percentageOf | false | true | double |
Specifies the 'percentageOf' attribute if you want to retrieve the value in %. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the generated random ID. | |||
prefix | false | false | java.lang.String |
Specifies a prefix for the ID. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the sanitized result. | |||
string | true | true | java.lang.String |
The string to sanitize. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the trimmed result. | |||
string | true | true | java.lang.String |
The string to trim. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the hashCode result. | |||
prefix | false | false | java.lang.String |
Specifies a prefix to prepend to the hashCode. | |||
object | true | true | java.lang.Object |
The object to compute hashCode from. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | false | false | java.lang.String |
Name of the exported variable for the join result. | |||
list | true | true | java.util.List |
The list to join into a string. | |||
separator | false | true | java.lang.String |
The separator character to be used for joining the string values. Defaults to ','. |
Attribute name | Required | Runtime Expression Evaluation | Type |
---|---|---|---|
var | true | false | java.lang.String |
Name of the exported variable for the split result. Object exported is of type String[]. | |||
string | true | true | java.lang.String |
The string to splits into an array. | |||
separator | false | true | java.lang.String |
The separator character to be used for splitting the string value. Defaults to ','. |
- < li class="${string:isInteger(meta.value)}" > < /li >
- < li class="${string:isNumeric(meta.value)}" > < /li >
- < li class="${string:hashCode('prefix_', meta.name)}" > < /li >
- < li class="${string:trim(meta.name)}" > < /li >