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,
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.
Hi Mike,
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