*/
public void removeInputStyleName(String style) {
if (rendered) {
El inputEl = getInputEl();
if (inputEl != null) {
inputEl.removeStyleName(style);
}
} else if (inputStyle != null && style != null) {
String[] s = inputStyle.split(" ");
inputStyle = "";
for (int i = 0; i < s.length; i++) {