Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Popup LOV using Javascript Initialization with GroupName

Matt SmithSep 13 2021

I am trying to create a popup lov using javascript initialization and groupname.
I have a DD column that contains HTML that I need to not Escape. Their is also a D, R, and G column. If I do not use Javascript Initialization, then it displays D, the drop down uses DD and groups by G without an issue. When I use the following in the Initialization, I get the DD without escape but no grouping. Anyone know the correct way to format this? I have ready all the JSDoc Widget Grid and can not see what im missing.

function(options) {
  options.defaultGridOptions = {
    columns: [{
      DD: {
heading: 'RPT;',
escape: false,
GroupName: "G"
      }
    }],
  columnGroups: [{
      G: {
heading: 'CAT'
      }
    }]

  };
  return options;
}

with_init.pngAbove is with the Javascript Code and below is without the Javascript
without_init.png

This post has been answered by Matt Smith on Sep 13 2021
Jump to Answer

Comments

Processing

Post Details

Added on Sep 13 2021
1 comment
1,240 views