LimeReport Forum

General Category | Основное => Discussion | Обсуждение => Topic started by: pcuevas on April 24, 2017, 07:43:51 PM

Title: VISIBLE items
Post by: pcuevas on April 24, 2017, 07:43:51 PM
Is possible to hide some Item depending of a condition?
Title: Re: VISIBLE items
Post by: Arin Alex on April 25, 2017, 10:43:54 AM
It's possible. You can use THIS.isVisible property to do it.
Code: [Select]
$S{
var testval = "hide"
if (testval === "hide")
   THIS.isVisible = false
}