Hi All, How can we hide the 'Clear All Lines' butt...
# suitescript
s
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?
s
You can refer into this article: https://blog.prolecto.com/2018/09/22/learn-how-to-hide-netsuite-sublist-buttons-and-other-html-elements/
jQuery("#tbl_clearsplitsitem").hide()
s
Ok, let me check thanks.