Hi Sreenivasarao Ganapathi,
Place the action button inside the grid and set display: none and place the button out side the grid and add class to to it, using jquery clicking the inside button with outside button.
$(".view1").click(function(){
$(".view").click();
});
Thanks.