Click here to Skip to main content
15,891,785 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a simple problem (I hope). In my Grid view I have a text box. When user click and interact with text box TextChanged event is updating data (both on Enter and button press). My problem is when user decide to edit text again. Pressing enter is doing nothing. I did some testing and found out that when I focus some other control and click back on text box – text is updated. I didnt know TextChanged event has anything to do with focusing control. I am out of ideas.
Posted

1 solution

You can change your gridview element's
Objective-C
IsTabStop
property to false to gain that effect.
Also if you want to cycle with Tab you can
Objective-C
TabNavigation="Cycle"
.
Both changes are in xaml.
Does that happen in all browsers ?
Try setting the IsTabStop property - http://msdn.microsoft.com/en-us/library/system.windows.controls.control.istabstop.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900