Hi everyone
I have faced a problem of not focussing ultragrid's cell when performing tab among the columns that contain editorcontrols(ultraCombo) in ultragrid without using mouse click. I have tried using following code snippet as shown below.
Code Snippet
UltraGrid_AfterEnterEditMode
{
UltraGrid.PerformAction(UltraGridAction.EnterEditMode);
}
This code focus on the cell that contain editorcomponent like UltraCombo and user can select UltraCombo's value using keyboard's up and down arrow keys. But the user cannot perform other keystroke like enter,tab. But i need to perform that thing as well. These keystroke are disabled. Is there any solution to resolve my problem?
regards
sureshthedude
Hi Siva,
It sounds like in your case you have set the TabNavigation property of the grid to tab to the next Control.
Hi Mike,
I am also facing the same problem.Tabbing is not working in my UltraWinGrid. I am using Infragisticsv7.1. I am having grid with editable cells. When tab is pressed focus is going out of the grid. Please do the needfull.
Regards,
Siva Nagaraju
Hi Suresh,
If the tab key is not moving to the next column, then something is wrong. You should not have to do anything to make this work, it works automatically.
I'm afraid I don't have a guess as to why it's not working for you. Something in your code must be causing this. Either that or this is a bug and you are using a really old version of the controls.
At first i would like to make my question clear. I have two columns in the ultragrid which have editorcontrol i.e ultraCombo / ultraTextEditor. First column is binded with a table value with ultracombo as editorcontrol and the second column depends upon the first column's selected value. And the second column may have editorcontol as ultraTextEditor or ultraCombo. It depends upon the value of the first column selected from the ultracombo. So now my problem is whenever user select value from first column (ultracombo) and press tab it doesnot focus to editorcontrols of second column in ultragrid. Rather the user has to click from mouse in order to focus in the second column. I need to focus into the second column without using mouse click So, how can i fix this issue.
Best regards
Suresh
Hi,
I'm afraid I do not understand your question. The code you have here is telling the grid to enter edit mode after it already entered edit mode, so that does not make sense.