1. How do i set a message for any action in the grid. for example, I have a delete button in the grid when clicking the delete button i want to show a confirmation message "Do you want to delete"
2 Answers
$grid["delete_options"] = array('width'=>'250','height'=>'250');
$grid["delete_options"] = array('caption'=>'My Caption','msg'=>'Do Stuff ?','bSubmit'=>'Yes','bCancel'=>'Cancel');
Your Answer