I am bigginer for infragistics. Pls Help me.
There are some method like setfocus in infragistics Ultragrid view.
Thank you.
????????
Hello nalinsen,
Your original post was not very clear. Is there something in particular that you're looking to learn about the grid?
In general, I would recommend posting to the appropriate product and control forum. For example, this sounds like a Windows Forms WinGrid question, so posting to that forum will help the developers here find your post.
Here are some links to our documentation to get you started.
Understanding WinGridGetting Started with WinGridUsing WinGridWinGrid API Overview
You can also view the samples by downloading them from here.
Elizabeth AlbertLocalization Engineer
when key board enter key i want to set focus other column in current row. that is the my problem. please help......
sorry...
when press keyboard enter key set focus other column in current row... that is the my problem. how to solve. Please help me.
Thanks very very much.. i wil try and tell
nalinsen said: sorry... when press keyboard enter key set focus other column in current row... that is the my problem. how to solve. Please help me. Thank you.
Here's a code snippet using the KeyUp event of the UltraGrid.
private void ultraGrid1_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) ultraGrid1.PerformAction(UltraGridAction.NextCellByTab); }