I've created a button in Ribbon workbench with a command where when i click on it runs a JS script, first i read a Yes/No value from a table and what i want to do is if this value is /No/ hide the Save and Remove buttons.
_onClickCheckBoolValue: function(executionContext){
console.log(/Checking bool/);
//Get the value of showdelete
var showClassID = executionContext.getAttribute(/*****_showdelete/).getValue()
if(showClassID == false){
//Hide buttons
}
},
I want to hide the Save (Guardar) and Delete (Eliminar) buttons on the form in the power apps,
but i cant seem to do it.
Thanks for the help.