How to Inject external css style sheet into GWT Panel widget? -


how inject css style sheet 1 of vertical panels in gwt ?

i have following code

mainpanelresources.java

public interface mainpanelresources extends clientbundle {  public interface mymainpanelresourcescss extends cssresource{      public static final mainpanelresources instance = gwt.create(mainpanelresources.class);    @source("mainpanel.css")  public cssresource css();  } } 

mainpanel.css

@external .mainpanel {     border: 1px solid black;  } 

found answer in google web toolkit group, in basic css question posted mike dee https://groups.google.com/forum/#!msg/google-web-toolkit/taqng9koemk/yi9btaznamij


Comments

Popular posts from this blog

google chrome - Developer tools - How to inspect the elements which are added momentarily (by JQuery)? -

angularjs - Showing an empty as first option in select tag -

php - Cloud9 cloud IDE and CakePHP -