LimeReport Forum
General Category | Основное => Discussion | Обсуждение => Topic started by: Hassan on April 23, 2020, 12:28:53 am
-
How Can I hide duplicated TextItems in data row.
Thank u in advance.
-
The TextItem has property isVisible and you can use it in the value script something like this:
$S{
if (PriorValue == getField("datasource.Field")){
THIS.isVisible = false
} else {
PriorValue = getField("datasource.Field")
}
getField("datasource.Field")
}
In the init script initialize PriorValue like:
var PriorValue = ""