当前位置:  开发笔记 > 编程语言 > 正文

不允许GWT addValueChangeHandler到RichTextBox,这是另一种方法

如何解决《不允许GWTaddValueChangeHandler到RichTextBox,这是另一种方法》经验,为你挑选了1个好方法。

我试图更新数据库一旦我更改RichTextBox并退出RichTextBox(即,我不想强​​迫用户按"更新按钮").但是,我的代码The method addValueChangeHandler(new ValueChangeHandler(){}) is undefined for the type RichTextArea在第一行抛出异常.

                             textBoxExistingDescription.addValueChangeHandler(new ValueChangeHandler() {
                                public void onValueChange(ValueChangeEvent event) {

                                    //If a record for this Youth Member specific detail line exists then update it else add it.
                                    if (ymAwardDetails.getYmsdId() != null) {
                                        AsyncCallback callback = new YMSpecificHandler(ScoutAwardView.this);
                                        rpc.updateYMSpecific(ymAwardDetails.getYmsdId(), ymAwardDetails.getYmsdDetail(), callback);
                                    }else{
                                        AsyncCallback callback = new YMSpecificHandler(ScoutAwardView.this);
                                        rpc.addYMSpecific(youthMemberID, ymAwardDetails.getAdId(), ymAwardDetails.getYmsdDetail(), callback);
                                    }
                                }
                            });

有没有另外一种方法可以做到这一点?



1> RAS..:

看看你的要求,我认为你也可以通过实施addBlurHandler()而不是实现addValueChangeHandler().

当组件失去焦点时,模糊事件会被触发.有关模糊事件的更多信息,请阅读此内容.

有关GWT的信息BlurEvent,请阅读此内容.

推荐阅读
手机用户2402852387
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有