Hello Telerik Team,
I have one problem in my WPF project.Let i explain in detail
In my UI contains three TextBoxes..
All are set into
UpdateSourceTrigger=LostFocus;
and also i have standard menu bar
The menu bar purpose is saving the details to database..
Every time after entered value in textbox atleast one time i change focus to another control then only
the values are updated.Problem is if i enter third Textbox value mean here i change focus to second textbox or first textbox then only Third box value updated.
Here i want to update third box value without changing focus to firstbox or second box..
so i make some codes in Codebehind it comes,
The Binding expression binding value when still focus in third TextBox also...(not leaveing focus to other control)
after that i am clicking save in menuItem all values are comes correctly.Third value also updated.
After that i am changing standard menubar to RadMenu .
Here also i am doing same process.but its not return thid textbox value..
I realize where is the mistake comes from
if suppose i am using standard menu and the focus is in third textBox
that time i am clicking save means inside save method comes Keyboard.FocusElement=TextBox (finding using debugging)
same time if i am using Radmenu and the focus is in third textbox
that time i am clicking save means inside save method comes Keyboard.FocusElement=Save will come not TextBox..
I don't know why Telerik.wimdows.controls.Radmenu Header.save come instead of Textbox
can anybody give correct solution?
give me solution in detail..
Thank you.....