Is it possible to data-bind the visible property in MVVM to multiple conditions, either by using logical operators (&&) or calling a function that accepts parameters?
<div id=
'test'
data-bind=
'visible: condition1 && condition2'
>...</div>
or
<div id=
'test'
data-bind=
'visible: myShowFunction('
a
', '
b
')'
>...</div>