1. Overview
This document will be helpful to change report from multi row view to single row view in IG report.
2. Technologies and Tools Used
- Javascript
3. Use Case
In one of our project the head of the department wanted to view the report in single row format to approve the process.
4. Architecture
We can achieve this by using below simple method.
Steps to follow.
Step:1
Set static id to the interactive grid report (IG)
Step:2
Paste below the code in Execute when page load under Page Designer.
Code:
var ig$ = apex.region(“IG”).widget();
ig$.interactiveGrid(“getActions”).invoke(“single-row-view”);
5. Screen Shot
Output:
Recent Posts