I'm trying to find a way that when the user presses the Enter button on the keyboard the Xamdatagrid will go to the next record. I couldn't get KeyBindings to work for me. Is there a way I can get an example?
Nevermind I solved it using the following:
<igDP:XamDataGrid.InputBindings> <KeyBinding Command="{x:Static igDP:DataPresenterCommands.RecordBelow}" Key="Enter" /></igDP:XamDataGrid.InputBindings>
Hello,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
I do have another issue I would like your help on. When I click the Enter button how can I get the next record to enter into Edit mode when AllowEdit is set to true? I attached a project explaining my scenerio.
I have been looking into your sample and I modified it has the functionality you want. Basically I handled the XamDataGrid’s RecordActivated event and put the first cell in edit mode. Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.
Thank you this helped.