Is it possible to use || operator in disable like this:
data-bind="click: createSubActivity, disable: isDeliveryHistory || isTimeAndMaterialLocked"
I have tried, but it seems like it doesn't work.
Is it possible to use || operator in disable like this:
data-bind="click: createSubActivity, disable: isDeliveryHistory || isTimeAndMaterialLocked"
I have tried, but it seems like it doesn't work.
If isDeliveryHistory
and isTimeAndMaterialLocked
are observables, you should use them like this:
data-bind="click: createSubActivity, disable: isDeliveryHistory() || isTimeAndMaterialLocked()"
© 2022 - 2024 — McMap. All rights reserved.