hello how to make Interactive report mobile friendly ? in interactive grid there is single row view which is perfect i trigger it when media is mobile :var ig$ = apex.region("grid"); var grid2 = apex.region('grid-2') if(window.matchMedia('(max-width: 760px)').matches){ if (ig$){ ig$.widget().interactiveGrid("getActions").invoke("single-row-view"); } if (grid2){ grid2.widget().interactiveGrid("getActions").invoke("single-row-view"); } } but when it comes to =======================>interactive report
hello how to make Interactive report mobile friendly ? in interactive grid there is single row view which is perfect i trigger it when media is mobile :var ig$ = apex.region("grid");
var grid2 = apex.region('grid-2')
if(window.matchMedia('(max-width: 760px)').matches){
if (ig$){
ig$.widget().interactiveGrid("getActions").invoke("single-row-view");
}
if (grid2){
grid2.widget().interactiveGrid("getActions").invoke("single-row-view");
}
}
but when it comes to =======================>interactive report