I would like to now why Gxt uses different attribute names for css, and if there is a list with the equivalents between CSS default names and Gxt attribute names.
For example, to set the background color of some component I use background-color: #000000; but in the code I need to do component.setStyleAttribute("backgroundColor", "#000000"); for it to work.
Oh yeah, you're right. But when I use component.setStylePrimaryName("my-style"); with the property on it, the color just don't get loaded to the page's css.
Yeah, I've already done this, but the problems persists, it looks like everytime I use a Gxt component with my customized style, it won't work, even if I put an !important in the front of my attribute declaration.