Hi All,
How can we hide the 'Clear All Lines' button from the Estimate form on the Before Load event?
---------------------------------------------------
var button = objForm.getButton({
id: 'printbom'
});
if (button) {
button.isHidden = true;
}
I used this for the WO Print Button, how can we do it for line level?