All
I have the following button, How do I change its body color to green.
IButton buyButton = new IButton();
buyButton.setTitle("BUY");
buyButton.setBackgroundColor("green");
buyButton.setEdgeBackgroundColor("green");
buyButton.setEdgeCenterBackgroundColor("green");
buyButton.setBorder("1px solid green");
At the moment it has taken the default skins color. SmartGWT 2.2
I have the following button, How do I change its body color to green.
IButton buyButton = new IButton();
buyButton.setTitle("BUY");
buyButton.setBackgroundColor("green");
buyButton.setEdgeBackgroundColor("green");
buyButton.setEdgeCenterBackgroundColor("green");
buyButton.setBorder("1px solid green");
At the moment it has taken the default skins color. SmartGWT 2.2
Comment