Dear Sir,
Can I get some information on how to use keyboard shortcuts to add a row to a grid. Using the mouse to click on + is very time consuming.
Many thanks!
You can bind your shortcut keys by adding following lib:
<script src="//cdn.jsdelivr.net/jquery.hotkeys/0.8b/jquery.hotkeys.js"></script>
More help on keys are available on its site: http://github.com/tzuryby/hotkeys
Next, you will find the ID of button to attach shortcut. Use firebug inspect to hover that button and it would show ID of the element.
e.g. To add 'insert' key with '+' button in toolbar (where list1 is your grid id)
<script>
// insert key to add new row
$(document).bind('keyup', 'insert', function(){
jQuery('#add_list1').click();
});
</script>
You can use https://github.com/jeresig/jquery.hotkeys to connect desired key for edit.
Working code here: http://pastebin.com/RuKBFkzE