How to get selected(multiple) row/data information info outside Datagrid

0
Hello Everyone, I am using one data grid with multiple selection. Our requirement is, we defined one button outside data grid. Once user click that button, I would like to get those selected multiple row/data information in button Microflow. We can place that button in data grid area, but user wants it that button somewhere. Can you please let me know how to solve this problem?
asked
1 answers
7

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.

answered