All,
I am trying to show/hide elements based on an onDatachange method. I have the element showing and hiding based on the data change; however, it is doing it for all records and not just the selected record.
My method is:
if (whitechangeto==‘No’ )
{ //Set / Get the visiblity
elements.whitenew.visible =false;
}
else
{
elements.whitenew.visible =true;
}
Assuming you’re in a List/Table view or Portal: Unfortunally, you cannot enable/disable a field only for a specific record: You either enable/disable the entire colum or not.