Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic: VISIBLE items  (Read 1489 times)

pcuevas

  • Newbie
  • *
  • Posts: 12
    • View Profile
VISIBLE items
« on: April 24, 2017, 07:43:51 PM »
Is possible to hide some Item depending of a condition?

Arin Alex

  • Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 992
    • View Profile
Re: VISIBLE items
« Reply #1 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
}