• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Retreive widget Style

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
At run time, is it possible to retrieve style detail such as font size of a widget? For instance if I've the setup as below:


css class is:

.labelfont {

font-size: 12px;

}

Resource class is:

public interface XyzCss extends CssResource {

String labelfont();

}

Code snippet in the container class is:

public class container() extends Composite{

static XyzCss css;

static {
//inject style here

}

//constructor
public container() {
Label widget = new Label("testlabel");
widget.addStyleName(css.labelfont());
//initialize ui binder
.........
}

//method
public void getFontsize() {

...what is the code snippet here that would fetch me the font size from style labelfont()?

}


}





 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic