How To Elegant Switch On Interactive Report In Oracle Apex

How To Elegant Switch On Interactive Report In Oracle Apex
Elegant Switch On Interactive Report In Oracle Apex 1. Function and Global Variable Declaration $( function () {    $( "#movie_ig" ).on( "interactivegridviewchange" , function (event, data) {  if (data.view === "grid" && data.created) {        $( "#movie_ig_ig_grid_vc" ).grid( "hideColumn" , "SHOW_DATA" );        }    });  })  2.  Inline CSS a-GV-headerLabel { white-space : normal ; } #movie_ig .a-GV-cell { height : 41px; } /* by removing the height the edit fields will be centered */ #movie_ig .a-GV-cell .a-GV-columnItem { height : auto ; } .wrap-cell { max-height : 128px; white-space : normal ; overflow : hidden ; } #movie_ig .a-IconList-item { width : 142px; height : 164px; text-align :

Post a Comment