Interactive Report & Form Page Oracle APEX - Part 7

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ธ.ค. 2024

ความคิดเห็น • 1

  • @LOGLO-nb9ze
    @LOGLO-nb9ze ปีที่แล้ว

    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