it is possible to hide the *copy previous* button ...
# suitescript
s
it is possible to hide the copy previous button at the line level?
j
Create an Inline HTML Custom field on the form you need to hide it on and insert the following value for it:
Copy code
'<script>let copyButton = document.getElementById('item_copy'); copyButton.style.display = "none";</script>'
s
Thanks. its done.