The Grid should have a vertical scrollbar, but is hidden. However, there is an space left on the table header.

How to remove the blank space header ?

enter image description here

有帮助吗?

解决方案

The solution is to override the GridView to set the space to 0.

public class CustomGxtGridView<M> extends GridView<M> {

    private static int SCROLL_OFFSET = 1;

    public CustomGxtGridView(...) {
        super(viewMediator);
        this.scrollOffset = SCROLL_OFFSET;
        this.vbar = false;
        this.setAdjustForHScroll(false);
    }

    @Override
    protected int getScrollAdjust() {
        return 0;
    }

}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top