Can we make the custom button created using suites...
# suitescript
s
Can we make the custom button created using suitescript blue color? - like the default netsuite buttons? If so .., kindly advice on the method. Thanks
n
With DOM manipulation you could change your button color. Perhaps in your client script that handles the button click under the pageInit function. You just get the button object then set the properties. Something like this
document.getElementById("button").style.background='#000000';
171 Views