Unable to paste the context in Primefaces Extension pe:inputNumber using mouse

岁酱吖の 提交于 2020-01-04 06:43:08

问题


We've been using Primefaces (v 3.5) and Primefaces Extensions (v 0.7.0) in our project and it's been great, cheers for the developers and community!

The inputNumber component takes care of pretty much all of our needs when dealing with decimal fields.

The one thing that isn't working is when the user paste a value into the field using the mouse right button then paste option.

When that happens, it seems these values aren't processed, since when I submit the form they are cleared, no matter it's a valid or unvalid value.

The user can even paste a text into the pe:inputNumber. The control c + control v works as expected, no problem at all.

The code we are using is like this:

 <pe:inputNumber id="AmtInTxt" value="#{myController.amtField}" symbol="$ "/>

Any ideas of how can we make the context menu paste works like the control c + control v?

Community Post


回答1:


Was this ever solved? For future viewers - this looks like an issue with not posting the data to the bean when using the mouse. Try putting an ajax event handler in your input field.

<pe:inputNumber ...> <p:ajax event="blur"/> </pe:inputNumber>




回答2:


I've encountered same problem. At first I thought it happens only when using browser's autocomplete feature. From this post I've learned that it is strictly connected with just changing value via mouse. I am using <p:ajax event="blur" process="@this" /> and it doesn't change anything. More specifically, the value is empty within the InputNumberRenderer.getConvertedValue method and since then it passes null value to setter/listener.

EDIT: Also tried putting onstart="$(event.target).keypress()" within the ajax to simulate user's keypress. Sadly doesn't work.



来源:https://stackoverflow.com/questions/26760853/unable-to-paste-the-context-in-primefaces-extension-peinputnumber-using-mouse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!