is it possible to hide these links via suitescript...
# suitescript
m
is it possible to hide these links via suitescript on a transaction form?
s
You could probably hide them with DOM manipulation, not with the standard APIs.
b
Copy code
jQuery('.page-title-menu').hide();
Put that in pageInit() in a client script
m
wow, that did it. Thanks!
👍 1