PopupNumericBigDecimalEditCell.java 文件源码

java
阅读 19 收藏 0 点赞 0 评论 0

项目:kie-wb-common 作者:
public PopupNumericBigDecimalEditCell( boolean isReadOnly ) {
    super( isReadOnly );

    // Tabbing out of the TextBox commits changes
    textBox.addKeyDownHandler( new KeyDownHandler() {

        public void onKeyDown( KeyDownEvent event ) {
            boolean keyTab = event.getNativeKeyCode() == KeyCodes.KEY_TAB;
            boolean keyEnter = event.getNativeKeyCode() == KeyCodes.KEY_ENTER;
            if ( keyEnter || keyTab ) {
                commit();
            }
        }

    } );

    vPanel.add( textBox );
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号