In Suitelet how can I remove the title? (I dont wa...
# suitescript
d
In Suitelet how can I remove the title? (I dont want to see the title...) As the documentation 'title' is required.
Copy code
let form = serverWidget.createForm({
            title: 'Simple Title'
        });
n
Could you try setting it as an empty string
serverWidget.createForm({ title: " " });
Yeah that works
*not actually empty. Seems that the blank space is required or it errors
1