java - GWT CellTable - Remove the sorting arrow from a header -
i remove sorting arrow header of celltable. (the 1 in red circle below, gwt showcase : http://gwt.google.com/samples/showcase/showcase.html#!cwcelltable)

but still want sorting capabilities of celltable.
is possible? idea?
untested , bit of hack, try overriding default style return blank images. extend hilbrand's earlier solution override imageresources celltable uses:
public interface tableresources extends celltable.resources {     @source("blank.jpg")     imageresource celltablesortascending();      @source("blank.jpg")     imageresource celltablesortdescending();  } create 'blank.jpg' , put in same resources package interface.
Comments
Post a Comment