Hi,
Hi have 13 xamCurrencyEditor.
The first time i touch (with touche screen) on xamCurrencyEditor the default keyboard appears and a second fraction after the numeric keypad appears.
This is acceptable because it's the keypad that I want.
The problem is that if I modify a control I have already modified it is the default keyboard that appears and not the numeric keyboard
Francois.
I just saw that when the second time I touch on the control it is not in edit mode. If re-touch again and it enter in edit mode and my numeric keypad appears.
Why the first time i touch the xamCurrencyEditor it enters edit mode and the second time no?
I also noticed that the problem is there when we are in tablet mode
Hello GIPFG,
I have logged this behavior in our internal tracking system with a Development ID of 233330. The next step will be for a developer to review my investigation and confirm my findings or to offer a fix, or other resolution.
As a workaround, what you could try is to subscribe to the PreviewTouchDown event and call StartEditMode() method.The following snippet code illustrates this:
private void XamEditor_PreviewTouchDown(object sender, TouchEventArgs e){ (sender as XamCurrencyEditor).StartEditMode();}
Please let me know if you have any other questions on this matter.
Hi Martin,
If I activate the event "PreviewTouchDown" the problem is on first touch.
I am obliged to touch a second time.
- First touch, default keyboard appears. I click on numeric keyboard and I can enter number. But I don't see the cursor.
- If I touch two time, numeric keyboard appears and I see my cursor.
Here is how to reproduce the situation. Without PreviewTouchDown event.
private void xceItemPrice1_EditModeStarted(object sender, Infragistics.Windows.Editors.Events.EditModeStartedEventArgs e) {xceItemPrice1.SelectAll();}
- Touch on xceItemPrice1, all is correct. Everything is selected and my numeric keyboard appears.
- Touch on xceItemPrice2, all is correct. Everything is selected and my numeric keyboard appears.
- Touch again on xceItemPrice1 (the problem arises), My default keyboard appears and the numbers are not selected. (If I touch on numeric keyboard, I can enter new number)
- Touch second time on xceItemPrice1, my numeric keyboard appears and cursor is flashing on XamCurrencyEditor, but the numbers are not selected.
If I uses only mouse, the problem is not there.
But, if I use touch and mouse after, when you click with the mouse the problem is there.
Thank you,
I will try the new version.
The development issue with ID of 233330 has been fixed and it is available in the latest Service Release. You can download the Service Release by logging in our web site and then going to Account\My Keys and Downloads page.
Thank you for using Infragistics Components.