APEX Theme 25 - Responsive Grid Layout Question

Hi
What is the best way to control an item to be positioned right next to the other item on the same row.
I have a select list that I would like to have an edit button right next to it.
I created two items for example:
P_MY_SELECT_LIST Grid set New Line to Yes, Auto
P_MY_EDIT_LINK Grid set New Line to No, Auto
But it is not doing what I expected.. what am I missing?
When it was tables not divs I had no trouble but now I need to learn the kep to using the Grid.
When I hard code the edit in the Post Element of the item it works great with 2 spaces... but I can't control the item by the AUTH Scheme. I don't want them to show up unless you have the proper role.
Plus, I want to learn the new 4.2 way!
Thanks, Bill

Hi Scott, Bill,
Because Theme 25 relies on grid for most of it's positioning, it is difficult to do accomplish what was sometimes much simpler when using the tables approach for form layouts. This also happens to be one of the biggest issues with Theme 25: proper form and label positioning.
If we look back to using tables for form layout we would see that a structure would be created immediately when we started laying out items. Because of the way tables behave, whatever the size of your first label was controlled the width of that cell, and the cells below it. Meaning all of your labels would line up, but only take the space necessary to fit your label.
However, with a div-based grid, this is no longer possible. There is no structured set of cells that grow / contract together as there are in tables. Because of this, it is difficult to determine the width of a given container and apply that same width to others (for example, picking up your largest label, and applying the width of that label container to the other labels which are below).
One way to go around this problem, and what we've done in Theme 25, is to used fixed-width labels. So we explicitly set the width of labels, and that makes the layout much more predictable. We know that labels will always be a certain width, and that input fields that follow will begin from the same position. However, this is very different from how forms in tables work:
1. All labels are the same size, so even if a label is very small, or very large, it will take the same space.
2. We can no longer align two items be right next to each other without using grids.
3. When using grids, we have to be mindful of the label's fixed width as it can be larger than the column it is contained in.
We're working on a cleaner approach to this problem so creating responsive applications and laying form items is easier than it currently is. In the meantime, you can override several styles to help your particular use case.
Here are just a few styles you can apply to your page to get form alignment to behave (with a specified region static id):
1. Manually setting the widths of labels for a given region:
#my_region div.fieldContainer.horizontal>label {
    width: 80px;
#my_region div.fieldContainer.horizontal div.fieldControls {
    /* width above + 16px spacing */
    margin-left: 96px;
2. Set Label widths to only take up the space they need:
#my_region div.fieldContainer.horizontal>label {
    float: none;
    width: auto;
#my_region div.fieldContainer.horizontal div.fieldControls {
    margin-left: 0;
    display: inline-block;
3. You can allow fields to float left:
a. Add to your inline CSS:
#my_region div.fieldContainer {float: left;}b. Set grid layout attributes for your second item as follows:
Start New Row: No
Column: Automatic
New Column: NoYou can combine these together as well. For example, applying styles #2 and #3 will let you position elements side by side and immediately after each other.
Scott,
For some of your issues in particular, here are some possible ways to go around them:
1. Password field being cut off
In addition to setting the size of the field to 60, you can apply an inline style to control the width by setting the HTML Form Element Attributes field to:
style="max-width: 100%;"This will restrict the size of input field to be a maximum of 100% of it's container, and should no longer be hidden when your window is resized.
2. Customer Report obscured
You can add an inline style to your page header to set this region's content to scroll. For example giving it a static id of my_region and adding the following to your page's inline css field:
#my_region section.uRegion>div.uRegionContent {overflow: auto;} Hope this helps!
Shakeeb

Similar Messages

  • Grid Layout Question

    If I define a GridLayout of 3 rows and 2 columns, could I add an element that use 2 columns (like a colspan in HTML) ?
    Thanks in advance
    <jl>

    I don't think you can. But you can do it with GridBagLayout. It's just a lot harder to use, but you can make a method that makes it easy for you to set some of the most important GridBagConstraints so you don't have to do it yourself all the time.
    You could also use different layouts. Lets say the last row should contain one element using two columns. You can do this by using one panel with the gridlayout 2x2, and then below you have your element using "two columns". Sometimes this approach may be easier.

  • Apex 4.2.1: Region grid layout?

    See https://apex.oracle.com/pls/apex/f?p=57688:4
    Page template - One Level tabs - no sidebar. Theme 24
    The Grid Layout section in Region attributes has Start New Grid, Start new row/column, Column No or Automatic and Colspan attributes. How can I set the rowspan attribute so that, in the example page above, regions r1 and r2 are next to each other with no whitespace, regardless of the size of region r3? I thought I could easily set the rowspan of r1 to 2 and that would take care of it but maybe I am missing something.
    Help? Thanks

    VANJ.
    Did you check the html of the renderd page.
    Did is what I found.
    <table class="regionlayout" role="presentation" summary="">
      <tbody>
        <tr>
           <td valign="top">
               <section id="R8612284225122823493" class="uRegion clearfix"> //R1
           </td>
           <td rowspan="2">
              <section id="R8612284620818823496" class="uRegion clearfix">//R3
           </td>
         </tr>
        <tr>
           <td valign="top">
              <section id="R8612284400865823496" class="uRegion clearfix">//R2
          </td>
        </tr>
      </tbody>
    </table>As it is now R1 and R3 are renderd next to each other. And R2 is in a seperate row.
    So if R1 and R2 need to be next to each other R2 and R3 need to be swapped.
    It maybe something as simple as a wrong sequence.
    Nicolette

  • Fluid Grid Layout can´t be changed after opening .html file

    Hey Community!
    I´m working with DW CS6 for a few weeks now and I´m really happy about it!
    But now I´ve got a Problem... I used google and this forum to find a solution to it, but didn´t find anything about it. (Sorry, if i was too stupid to search for the right keywords! )
    I´ve created a new side with DW and wrote some html pages: All of them are fluid grid layouts and it worked all fine till today. Every page is seperated in an own folder including the "boilerplate.css" & the "respond.min" file, so the filetree looks like this (UPCASE = Folder):
    ROOT:
         index.html    
         boilerplate.css
         respond.min
         OFFERS:
              offers.hmtl
              boilerplate.css
              respond.min
         ALBUMS:
              albums.html
              boilerplate.css
              respond.min
    and so on...
    So today I wanted to open the .html files, to make some changes, add new fliud-grid-div-tags and add new content. The pages look still lik I left them (correct layout, old fluid-grid-div-tags still at the right position, everythings fine), but the collums of the fluid grid aren´t displayed anymore and I even can´t move the fluid-grid-div-tags anymore
    In other words:
    The collums are still there, but the fliud-grid-div-tags are no longer displayed green and editable in their position and size.
    Did I do something wrong? Or is it maybe just a special Checkbox to click in DW to edit them (like I´m now in a wrong DW-view or something like that?)?
    I hope you got a solution so I don´t have to rewrite all the pages again to be able to edit them!
    Greetings from Germany,
    David
    PS: Screenshot

    Hi Community,
    I found the solution on my own in a video, where someone deactevaded those green fields...
    So it´s solved
    THX @ all

  • Apex 4.2 theme 25 grid layout setting.

    Hi
    I know this is silly question but i had to ask you because i have i tried enough , i have done this before but it not working for me right now. :(
    I have 4 region on page .
    Region 1 Grid Layout
    Start New Row     Yes
    Column          Automatic     
    Column Span     Automatic     Region 2 Grid Layout
    Start New Row     Yes
    Column          1
    Column Span     4Region 3 Grid Layout
    Start New Row     NO
    Column          5
    Column Span     4Region 4 Grid Layout
    Start New Row     YES
    Column          1
    Column Span     8In Region 4 I have 11 number field items with setting.
    New Line YES
    New Field YES
    Width 11
    Height 1
    Column Span null(default)
    Row Span    null(default) I want to arrange first 6 in column 1 last 5 in column 5
    I played around the setting by changing column on item to start with 1 and 5 respectively and and set the NO to start new row.
    But it justs move little away to right not really to actual 5 column in grid.
    Your Input is appreciated.
    Thanks

    BUG in 4.1 application theme 25

  • APEX 4.2 aligning issue of Stop and Start Grid Layout item

    My APEX application application is in the process of moving from 4.0 to 4.2.  I am experiencing an issue with aligning (left margin justified) of Stop and Start Grid Layout items that have a border around them.  Earlier I had an issue with the border itself not showing up in the 4.2 application.  I was able to resolve that with a workaround by adding inline code in the CSS section of the page: #P23_OFFICE_START_TBL {width:682; border:1px solid #369; margin:5px;}. This created the border which I needed, but there are 2 Stop and Start Grid Layout items that are indented and not aligning with the border of the previous line.  I have tried a number of different things but none of them have worked.  This seems like a very simple issue to fix but I am having a tough time resolving it.
    I tried to put the item in question in a different grid, which corrected the indention but then I lost the border around the item.  It seems that the above CSS code does not work on the new grid.  I also tried to put attributes such as margin-left:5px; float: left; clear: left; float: left, in the CSS code but that did not work, too.
    Any suggestions?
    Thanks
    Ajay K

    I deleted and added back the Stop and Start Grid Layout items not aligning properly.  This worked.  Apparently, the 4.0 to 4.2 upgrade did not handle/convert these items properly.  Deleting and adding them back resolved the issue.

  • Grid Layout in theme 26

    Hi,
    I am using Oracle Apex 4.2.1
    I have been following a Youtube Video from Oracle Learning: http://www.youtube.com/watch?v=dPgQZTsdSBI
    The video demonstrates an example of grid layout for regions. The layout has 12 columns and and 4 regions, the regions using 3 columns each. In the video the regions align perfectly.
    I have tried to recreate this in theme 26 but it does not work. I have set theme 26 to reference the page templates for theme 25. However, this does not work and the regions appear next to each other using 1 grid each with no spacing.
    Any ideas on how to fix this in theme 26?
    Thanks,
    JIM

    JIM wrote:
    Hi,
    I am using Oracle Apex 4.2.1
    I have been following a Youtube Video from Oracle Learning: http://www.youtube.com/watch?v=dPgQZTsdSBI
    The video demonstrates an example of grid layout for regions. The layout has 12 columns and and 4 regions, the regions using 3 columns each. In the video the regions align perfectly. The video demonstration uses theme 25, which has page templates set up for a CSS grid system with 12 fixed-width columns.
    I have tried to recreate this in theme 26 but it does not work.The theme 26 page templates are configured to use HTML table layout with a dynamic, variable number of columns. HTML tables expand to fit their contents, so the width of the columns is also variable.
    I have set theme 26 to reference the page templates for theme 25.Don't know what you mean by this. Please explain in more detail.
    However, this does not work and the regions appear next to each other using 1 grid each with no spacing.
    Any ideas on how to fix this in theme 26?Basically there's nothing to "fix". This is how the table-based layout used in theme 26 works. The regions only appear to use "1 grid each" because their content is all the same size. If you add different content to the regions (as I have) then the table columns change width to fit it. You could use CSS to apply fixed widths to the columns, but that kind of defeats the purpose of using table-based layout.
    The themes in APEX 4.2 don't appear to specify spacing between regions when using HTML table layout, but this can be controlled using CSS.
    Why are you trying to use theme 26 rather than theme 25 as shown in the video demo? They don't look that different.

  • Fluid Grid Layout - Beginner's Questions

    First, let me explain once again that I can't reply to my own threads because the "Reply" function isn't working in my browsers for some reason. (Thanks for your tips on my other questions, Ben Pleysier and Nancy O.)
    Anyway, I want to modify my websites so they work in mobile devices, and I now have my first Fluid Grid Layout up and running. However, there are some bugs I need to work out.
    I experimented with two or three fluid grids and just realized that they're very different for some reason. I think I inserted the wrong elements or inserted them in the wrong location.
    Does the HTML code below look OK? I understand that everything is supposed to be inside div.gridContainer, which begs the question why are the last two divs (div.fluid and div#div1) OUTSIDE div.gridContainer? Are these extraneous divs that I can delete?
    Am I supposed to have a div#page and div data-role="header"?
    It looks like all my actual content - including the footer? - should go inside div data-role="content", right? And am I going to have to apply class="fluid Paragraph" to every paragraph in my database tables?
    Some of the confusion may be because some of these unfamiliar elements (e.g. "data-role") may be HTML5, which I'm also just learning about.
    If anyone could post a link to a web page(s) using Dreamweaver's Fluid Grid Layout, so I can examine the source code, it would be really helpful. Thanks!
    <body>
    <div class="gridContainer clearfix">
      <div data-role="page" id="page">
        <div data-role="header">
        <?php require_once($BaseINC."/$MyPHP/inc/D/Shared/Body/Header.php"); ?>
        </div>
        <div data-role="content">CONTENT </div>
        <!--This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats--><br class="clearfloat">
        <header class="fluid Header">This is the content for Layout Header Tag "Header"</header>
        <p class="fluid Paragraph">This is the content for Layout P Tag "Paragraph"</p>
        <footer class="fluid Footer"><?php require_once($BaseINC."/$MyPHP/inc/D/Shared/Footer.php"); ?></footer>
      </div>
    </div>
    <!--Are div.fluid/DivBase and div#div1 supposed to be here, outside div.gradContainer? Can I delete them, or do they serve some purpose other than relaying information for getting started?-->
    <div class="fluid DivBase">This is the content for Layout Div Tag "DivBase"</div>
    <div id="div1" class="fluid">Use Insert Panel for additional Fluid Grid Layout Elements. Note: All Fluid Layout tags must be contained within the "gridContainer" div tag.</div>
    <!--I included some files that will be absolutely positioned near the top here.-->
    </body>
    </html>

    #1  Success with FGLayouts comes from experience.  I built 9 test layouts before I got an acceptable one.  A few tips.  Build Mobile first because that is what everything else is based on.  Then build Tablet & finally Desktop.  Do not tamper with code in FluidGrid.css or Boilerplate.css files.  Use a separate, external style sheet for your content styles.
    #2  Depends on whether or not you want the divs to fall outside your #gridContainer.  For example, let's say you want a 100% width header & footer that stretches the entire width of your page in all devices.  In that scenario, you would have to move <header> and <footer> tags above and below gridContainer div.  Otherwise, everything else needs to be inside the gridContainer in order to respond to the media queries.
    #3  APDivs will not work right in FluidGrid Layouts -- or any RWD for that matter -- so don't even go there.  
    Nancy O.

  • Responsive scaling of Edge Animate composition in Dreamweaver Fluid Grid Layout

    I have created an animation in Edge Animate and have placed it in the header of a Dreamweaver Fluid Grid Layout. I have put it in a div by itself so it can be turned off in the mobile layout. When I test the layout in a browser, the Edge Animate composition scales responsively to the window size, but the height of the div it is in does not. The width of the div changes with the width of the window, but the height of the div remains the same. Because the height of the div doesn't change, as the animation responds and resizes it leaves a large empty space between the bottom of the animation and the content that follows it on the page.
    The div itself does not have a rule for it's height associated with it. It seems to me that the div is getting its height from the original size of the html object which is the animation. I tried removing the height rule for the object, but then the div clips the bottom of the animation, and again, it doesn't resize with the window.
    Is there a way I can get the div's height to resize with the size of the animation as it changes?

    Thanks for your reply. You're right about most people not resizing their viewport during a session, but unfortunately the problem exists whether the screen is being resized or not. Refreshing the screen doesn't solve the problem.
    The width of the div adjusts to the width of the screen as expected and the Edge Animate composition inside it does too, but the height of the div doesn't adjust. As the animation gets smaller to fit the width, the height of the div that contains it remains the same, leaving empty space at the bottom of the div. What is needed is for the div to scale to fit the page width proportionally. Instead, only the width is adjusting.
    So I guess I need to know if there's either a way to force the div to scale proportionally or a way to tell it to adjust to the animation that it contains.

  • How to Get SWF to be Responsive in Fluid Grid Layout?

    I inserted my swf in a fluid grid layout div tag so it would fit on any screen. But no matter which Scale setting I use for the swf (noborder, default, exactfit, noscale, or showall) nothing works.
    Take a look This one is exactfit. It scales but does not maintain the proper aspect ratio.
    http://savcp.com/index-fluid-05.html

    Line 177 & 189, change:
    <param name="scale" value="exactfit">
    to:
    <param name="scale" value="showAll">
    showAll will maintain proportions while fitting to 100% width & height - but beware your container holding the SWF will show the background color of SWF (black in your case) when you're sizing down. You could consider changing it to your site background (gray) to ensure it doesn't look odd.
    On a sidenote, why are you worried about putting a SWF file into a responsive design? It will not work on mobile devices anyway!

  • In Fluid Grid layout, I have hidden 2 div for mobile layout. How do I unhide them?

    In Fluid Grid layout, I have hidden 2 <div> for mobile layout. How do I unhide them?

    Hi there,
    I visited your site using Dreamweaver CC and tested it using the default Desktop, Tablet and Mobile sizes, followed by the Smart Phone Size.
    The CSS you currently have sets the featurest <div> to 'display: none' when viewed on screen sizes lower than 480px:
    Another helpful way to find out what is going on with your CSS is to test the site with Firefox using Web Developer Tools to inspect the element (or alternatively, Adobes Inspect tool). You can right-click the image and "Inspect Element" then resize the browser window so you can see exactly which CSS rule is being applied and overrided.
    My suggestion would be to add an additional media query in Dreamweaver to handle all screen sizes below 480px and then set divs or elements you want to hide or show display property to visible.
    Hope this helps!

  • I downloaded Dreamweaver CC 2014.1, started using it but cannot find Show Fluid Grid Layout Guides button, Resize LI.link sizing handle and 'move up a Row' arrow. Where can I find them?

    I downloaded Dreamweaver CC 2014.1, started using it but cannot find Show Fluid Grid Layout Guides button, Resize LI.link sizing handle and 'move up a Row' arrow. Where can I find them?

    You have the latest version (CC 2014.1 or 2014.1.1) in which the interface condenses Design View with Live View buttons in normal layouts.  See screenshot.
    However, in FGLayouts, Live View is the only option which poses some editing problems and has been highly criticized.
    Is there any way to display the Design View in fluid grid pages?
    New Features in CC 2014.1 October Release
    http://helpx.adobe.com/dreamweaver/using/whats-new.html
    New Features in CC 2014.1.1 February Release
    https://helpx.adobe.com/dreamweaver/using/whats-new.html#Enhancements%20to%20Live%20View%2 0editing
    You can disable this restriction by adding an X to the FGLayout CSS.
        Dreamweaver Fluid Grid Properties
        dw-num-cols-mobile:      X 4;
        dw-num-cols-tablet:        8;
        dw-num-cols-desktop:    12;
        dw-gutter-percentage:    25;
    =====================================
    Having said that, it might just  be simpler to revert to an earlier version.  Log-in to Creative Cloud Desktop app.  Go to Filters & Versions > Previous Version.  See screenshot.
    Nancy O.

  • ALV Grid Layouts - Setting them user-specific

    Hi everybody -
    I am using the ALV grid layout for a report using function module REUSE_ALV_GRID_DISPLAY.  There are a number of fields that are not immediately viewed on screen - they are in hide mode within the field catalog.  We want to allow the users to add them / remove them from the report using an ALV variant.
    I can allow the users to add/remove with a layout variant no problem - but I am having an issue allowing them to save the variant that they are using to view the data, as user-specific.  For whatever reason, they are only allowed to save their layout variants as global - the "User-specific" box is grayed out.
    Does anyone know how I can get the "User Specific" box to be NOT grayed out within an ALV grid?
    Thanks!
    Abby

    Set the I_SAVE parameter to 'U' in your function call.
    Regards
    Rich Heilman

  • I'm designing my first website using Fluid Grid Layouts. CSS question

    I'm designing my first website using CS6 and Fluid Grid Layouts so I need a lot of help. I realize CS6 creates something called a boilerplate css file. However, in addition to that file, do I have to create an individual external style sheet for my desktop, ipad, and smart phone pages (3 separate style sheets) or should I have only one external style sheet for everything?
    Or this is there another recommended way to use Fluid Grid Layouts?

    FluidGrid Layouts creates a boilerplate.css file, a respond.js file & a Fluid.css file for you -- you name it whatever you like.  I like to call mine Fluid.css so I remember what it is. 
    Fluid.css contains mobile first -- upon which all others are based.  Inside, CSS Media queries, you'll find code for tablet and later on desktop.  So one stylesheet generated by DW covers all 3.
    TIPS: 
    FluidGrids are very temperamental.  Do not tamper with boilerplate.css or Fluid.css files.  Instead create a separate external style sheet for your typography & other custom content styles.
    Build mobile first, then tablet and finally desktop.
    Keep your designs simple and uncluttered. 
    Don't worry about content until you get the layout perfected.
    Have fun with it .  You'll probably have to start over a few times before you get what you want.
    Nancy O.

  • How can I create multiple pages, with different layouts to the others, in DW fluid grid layouts?

    Hi everyone,  : )
    I am creating a website using FGL in DW CS6, v12.0 build 5808.  I do not have Creative Cloud (do you have to pay to use this service?).
    I have created one layout for my home page.
    I would like to create several more pages, but I want them to use different layouts (as well as different content).
    I tried to do something similar before using 'save as' (this was with a non-FGL), but whenever I changed the original page that I had 'save as'd' from, the layout in all the other pages would change too!
    I found a possibility from someone else online suggesting using a template, but have not tried it yet: http://www.linkedin.com/groups/Adding-second-fluid-page-in-119937.S.192422240
    I'm a bit scared of breaking everything, as I am new to web design and have had to restart the whole process a few times due to messing up the fluid.css etc and other issues, so I am taking baby steps.
    Happy to try whatever's suggested and, while I wait for (I hope) your responses, I think I will try the template thing, but from the reply the person who asked the question gave, it sounds like his subsequent pages changed too, as I mentioned above?  *scared*  ; )
    If anyone can help me with this query I would be very grateful.  Thank you!  : )

    Thanks David.
    I tried using different IDs for the other pages, but eventually one of the divs seems to 'break' - it overlaps other divs, or cannot be moved or resized (you can select the outline and it goes blue, but no 'move up a row' or down a row or 'lock to grid' etc icons appear and it can't be drag-re-sized), plus the green overlay disappears (just from that div.  I'm aware of how to turn visual aids on and off), so it seems broken.  This often seems to happen if you rename a div once it's been created; it does not rename in the layout.css on the right side panel (CSS Styles) in DW and the 'broken' behaviour above is exhibited.  Do you know anything about this?  Is this the 'edit this doc at your peril' stuff that most tutorials seem to mention?  Am I doing something wrong?
    I also tried making an FGL and saving out the original boilerplate.css, layout.css and respond.js.  Then created multiple new FGLs and each time it created new versions of layout.css (called 'untitled-1', 2 etc.).  Once I had created all the FGLs, I deleted all the new boilerplates and untitled.css files.  Then restored the original ones and changed the link at the top of each page's html to refer to the same filename (the original layout.css), rather than untitled.css.  I thought this might work and it seemed to for a while, but then as I had to add new div names for the sections on each page, it eventually broke (as above).
    Anyway, I think you have a good point about different layouts and it occurred to me also while I was exploring and waiting for replies here.  I think I will make one layout for all pages and go with that.  I have a couple of questions about that though:
    1. I think the max number of divs I want for one of the pages is 10, but some pages need less divs.  If I only fill e.g. 8 divs on one page, will the other ones be sat there empty?  I think they will actually...I guess I'm asking because I have not tried it yet (will do after this) and it takes so long to do this trial and error.
    2. If the amount of content in each div is different, e.g.  let's say Page 1 has 6 lines of content in div1, but page 2 may have an unlimited amount of content (I will want to add to it in the future).  Will this result in the div on page 1 being a huge block of empty space after its 6 lines?
    Thanks so much for your help!

Maybe you are looking for

  • Can't print or see pdfs in print dialogue with 10.6.8

    After installing 10.6.8 and safari 5.1.5, can't print pdfs from sites. Unable to save same pdfs also. Installed lasted software for my printer. Firefox doesn't display the pdfs.Worked fine with 10.6.7.

  • Illustrator cc 2014 sluggish performance, old cc works fine

    i have a file in adobe illustrator cc 2014 that has a texture layer, i.e. a lot of little white specks. when i try to move/resize/anything this object, i get the lovely color spin wheel and everything grinds to a halt. illustrator cc 2014 slows, and

  • FPL9 Account Display - Basic List in custom screen

    Hi, I have requirement in which I need to create a screen which displays latest entries of FPL9 in with all cosmetics like color, traffic lights etc. Is there any FM / Program which can create this type of list directly or is custom ALV list to be cr

  • Message Output program for Forms

    Hi Guys, Can anyone help me with this.. We already created a customized program and form from the original one (copy and paste) ex: SAPFM06P to ZSAPFM06P and MEDRUCK to ZMEDRUCK and is running fine. Now the problem is this.. this new customized progr

  • Best Views to Lovs

    Dear All sometimes i use View Objects based on EOS to be used in List of values, and sometimes i use View Objects in expert Mode (View Object without EO), which one better any why ? thanks