Hi,
Today was my first day with GWT Ext and quite obviously I ran into a
problem.
In my HelloWorld program I want to add CSS styling to a component. My
CSS file is named as "HelloWorld.css". I have added some style
information for a label:
.labelStyle
{
font-size:30;
font-weight:normal;
}
In my code I am doing this :
Label label = new Label("My Panel");
label.setStyle("labelStyle");
In my HelloWorld.gwt.xml file I am doing this :
<!-- Specify the application specific style sheet. -->
<stylesheet src="js/ext/resources/css/ext-all.css" />
<stylesheet src="HelloWorld.css" />
However, the style information is not getting reflected in my
application. I am not really sure if I am doing this correct. Please
help me solve this issue.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---