Skip to Main Content
Feature Request FR-3619
Product Area Page Components
Status CLOSED

5 Voters

Make Single row view in IG editable

peter.hauke Public
· Feb 14 2024

Idea Summary

In Developer Single row view of an IG should be editable.

Use Case
If there are a lot of items in a IG and you Switch to single row view. All items are displayed in one column. This results in a Long scrolalable list. It is more usefull if we can Place the items Like in a form page in a grid.

Preferred Solution (Optional)
How would you implement this idea? If you are not sure, please delete this section.

This request is likely a duplicate of FR-1868.

Comments

Comments

  • michel.lessard OP 1.4 years ago

    Hello,  I understand your request, in the meantime I suggest you use the column headers to better present your data, with the collapse it improves the presentation. You can also play with data alignment like this:

    function (options) {
          options.defaultSingleRowOptions = options.defaultSingleRowOptions === undefined ? {} : options.defaultSingleRowOptions;
    
          let defaultSingleRowOptions = {
             labelAlignment: "start",
             formCssClasses: "margin-left-md margin-right-md"
          };
    
          $.extend(options.defaultSingleRowOptions,defaultSingleRowOptions);
          return options;
    

    and a little css can't hurt!!!

  • karel ekema OP 6 months ago

    In case a bit of custom code is ok for you, alternatively you can instantiate a recordView in a separate region with the same model and field configuration as the IG. Using region template as drawer, you get (with added Collapse/Expand All button):

    It makes use of the power of view/model separation which APEX offers here: I did a proof of concept, and it works perfectly. There are also options to make use of columns.