1

我正在尝试创建一个打印当前浏览器窗口的按钮。

这是我当前的代码,它使用(或至少它尝试使用)JSNI:

private Button print = new Button(constants.print(), new ClickHandler() {
    @Override
    public void onClick(final ClickEvent event) {
        /*-{
            if ($wnd.print) { 
                $wnd.print(); 
                return true; 
            } else { 
                return false; 
            } 
        }-*/
    }           
});

但是当我单击按钮时,什么也没有发生。这是我的第一个 GWT 应用程序,所以我不确定如何实现它。

4

3 回答 3

6
new Button(constants.print(),  new ClickHandler() {
        @Override
        public void onClick(final ClickEvent event) {
           print();
        }

        private native boolean print( ) /*-{
            if ($wnd.print) { 
                 $wnd.print(); 
                 return true; 
            } else { 
                 return false; 
            } 
        }-*/;  });

应该管用!始终将 JSNI 放在本机方法中。

于 2010-07-06T10:14:56.600 回答
2

从 GWT 1.5 版开始,有一个内置的打印功能:

import com.google.gwt.user.client.Window

public class PrintHandler implements ClickHandler {
    public void onClick (ClickEvent event) {
            Window.print()
    }
}
于 2013-02-12T16:53:34.730 回答
0

这是我的 2 美分:

创建一个可重用的类:

public class PrintHandler implements ClickHandler {

public void onClick (ClickEvent event) {
    print();
}

private native boolean print ()
/*-{
    if ($wnd.print) {
        $wnd.print();
        return true;
    } else {
        return false;
    }
}-*/;
}

并在您喜欢的任何地方使用它:

new Button( constants.print(), new PrintHandler() )
于 2012-10-01T02:45:59.790 回答