Please try this:
$('#pp').pagination({
buttons: [{
id:'btn-add',
iconCls:'icon-add',
handler:function(){alert('add')}
},'-',{
id:'btn-save',
iconCls:'icon-save',
handler:function(){alert('save')}
}]
});
$('#btn-add').bind('keydown',function(e){
//...
})