I have a button on the page and I need to disable it if a certain item in the gallery is different from empty
Example:
if(IsEmpty(ThisItem.Name) = false; set(varDesablebtn;true);set(varDesablebtn;false))
If no value is returned, then I enable the button to add a new one, if it already has a value, it does not show the button.
But I'm having trouble because this button is not inside the same gallery as the Name attribute
How could I disable this button that is outside the gallery where is the value that I will need to read?