Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Have you tried the built-in themes in the *.gwt.xml to see if they mesh?</p> <pre><code>&lt;!-- Inherit the default GWT style sheet. You can change --&gt; &lt;!-- the theme of your GWT application by uncommenting --&gt; &lt;!-- any one of the following lines. --&gt; &lt;!-- &lt;inherits name='com.google.gwt.user.theme.standard.Standard'/&gt; --&gt; &lt;!-- &lt;inherits name="com.google.gwt.user.theme.chrome.Chrome"/&gt; --&gt; &lt;inherits name="com.google.gwt.user.theme.dark.Dark"/&gt; </code></pre> <p>They are pretty basic. The difficulty with create any skin for GWT is that you pretty much have go through the package and customize some widgets on a case by base basis. With the advent of <code>UiBinder</code> and <code>ClientBundle</code>, some widgets (such as <code>DisclosurePanel</code> and <code>CellTable</code>) contain embedded or inline styling that uses styles and images that are embedded. A different arrow or highlighting scheme need to overridden at an implementation level.</p> <p>If you take a look at <code>CellTable</code> and if you <strong><a href="http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/cellview/client/?r=9687" rel="nofollow">browse</a></strong> the package you'll see that many of the styling elements packaged inside the JAR. So, in order to have a new <code>CellTable</code> style you'll need to do something like this</p> <pre><code>class MyCellTable&lt;T&gt; extends CellTable&lt;T&gt; { interface MyResources extends CellTable.Resources { @Override @ImageOptions(flipRtl = true) @Source("hamsterDance.gif") // because I can :P ImageResource cellTableLoading(); @Source("MyCellTableStyle.css") Style cellTableStyle(); } } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload