Lets take the following scenario:
The user enter value by several control items, like , textbox, listbox, combobox, radio button.
The user press the submit button and all the values entered by the user sent to the server.
The admin can view the details submitted by the user, and edit them if required.
Now while editing the user input by admin with click event, is it possible bring back the same type of controls(textbox/combo-box/radiobutton, etc.) when the user used to enter its input for the first time ?
Related
I want to set focus on a button while caret is present in textbox and user can still enter data to textbox. But when user presses enter key, button press will be simulated.
I am currently using a work around to solve this problem by handling onKeyDown event and checking for enter key. But problem is there is no clue for user to understand this as there is not blue border around the button that indicates focus on button.
Here is a example of what I want to implement (user can enter text in textbox while focus is on :
I have tried to search on google and StackOverflow but could not find any relevant result.
This is a fundamental Windows principle. It's not possible to have 2 controls (windows) focused at the same time.
So the focus should be inside the text box. But you can get the visual indication needed by setting the ok button as AcceptButton of the form (you might also want to set cancel button as CancelButton).
In the form constructor, load event or using designer:
this.AcceptButton = okButton;
There is no need to handle KeyDown event - as soon as the text box is not multiline, pressing Enter while the focus is inside it will generate ok button click. The same applies for the button set as CancelButton when you press ESC.
I am working on a project based on angular and ionic. I have a page consisting of sign up form. It has four fields namely email,mobile no, password and confirm password.The issue I am facing is that when I tap on confirm password field then keypad gets open and page gets scrolled. then confirm password field loses its focus. cursor is not get set to that field as well as whatever I typed on keyboard is not get shown in field unless I click outside.
we have a wpf application..in the Home page we have Work,Help,Approve
Search tabs..
When user clicks on the Approve tab and selects a student..if student is
not qualified then ApproveStudent option is enabled,when clicks StudentApprove
screen opens in a newtab and there the user can approve the student.
In the StudentApprove screen there Approve and Disqualify buttons, so when they
click the approve the student is approved once he is approved the StudentApprove
screen should close and take back to the screen from which he come i.e ApproveStudent screen
This is like Ribbonbar
Work,Approve,Search, Help
under these ..when they select any option..under these new tab opens, let say search has 3 options..
when selects Approve ..students list is displayed....when clicked on any student another screen is opened...when they click Approve button ..this tab should be closed and take back to Approve screen
I would use ItemsList and specify
[ViewSortHint("01")]
when you export your views.
Why do you need TabContainer if order is important?
I developed a simple web app in the browser where there are 3 input boxes . The first input box has a ajax search suggestion box drop down when user starts keying in something. For example, the first input box is for user to key in username, when user key in "alan", a dropdown-like suggestion box will show below the input box to show top 5 usersname contain the word "alan", the list is query from a sql server. After user select one of the username from the list, the user name is displayed in the input box, this is working fine.
But the problem is that after user selected the username from the dropdown-like list of usernames, the cursor is locked in the first input box and not able to move out from this input box. I've tried to set the focus to 2nd inputbox by putting in document.getElementbyID("secondinputboxid").focus hope but it doesn't set the focus to the second input box, really need help here.
Thanks.
If a user types a few characters into an AutoCompleteBox, the DropDown is displayed as expected.
If the user then clicks elsewhere on the page, this removes the focus from the AutoCompleteBox, and the DropDown disappears... also as expected.
However, if a user then returns focus to the AutoCompleteBox, and wants to redisplay the DropDown, filtering on the characters already there, the instinct seems to be to press the Enter key to re-filter/re-display the results. This, however, does not happen.
I've managed to capture the Enter key event (must use KeyUp instead of KeyDown), but I'm not sure how to make the DropDown re-appear at that point. Ideas?
Just assign true to the IsDropDownOpen property:-
myACB.IsDropDownOpen = true;