EGL Development User Group

EGL Development User Group

EGL Development User Group

The EGL Development User Group is dedicated to sharing news, knowledge, and insights regarding the EGL language and Business Developer product. Consisting of IBMers, HCL, and users, this community collaborates to advance the EGL ecosystem.

 View Only
  • 1.  ViewPort Metadata

    Posted Wed October 28, 2015 04:32 PM

    Using Viewport Metadata


    You can define properties of the viewport for your web page using the "viewport" property in an HTML<meta> tag (which must be placed in your document <head>). You can define multiple viewport properties in the <meta> tag's content attribute. For example, you can define the height and width of the viewport, the initial scale of the page, and the target screen density. Each viewport property in the content attribute must be separated by a comma.

    For example, the following snippet from an HTML document specifies that the viewport width should exactly match the device screen width and that the ability to zoom should be disabled.

    <head><title>Example</title><meta name="viewport" content="width=device-width, user-scalable=no"/></head>

    How do I get viewport data into my EGL 9.1.1 App?

    We are switching Android devices that have different screen widths and heights?

    Is this handled better in RBD 9.5?

    Gadberry


  • 2.  Re: ViewPort Metadata

    Posted Tue November 03, 2015 09:51 AM

    Let me re-frame my question...

    When I deploy my project, how do I change the template used when it creates my target project.

     

     

     

    I want to add a <meta> tag to the template html that is generated by EGL. 

    Right now, I have to insert the <meta> tag after I deploy the project.

     

     Gadberry

    Gadberry


  • 3.  Re: ViewPort Metadata

    Posted Tue November 10, 2015 05:54 AM

    Hi Gadberry,

    This is one of the requirements in RBD's RFE list. Unfortunately, it is not implemented yet. We will consider to add this in a recent release. 

    -Jiyong

    HuangJiYong


  • 4.  Re: ViewPort Metadata

    Posted Tue November 10, 2015 06:11 AM

    Is there a link to the RFE?

    Bram_Callewaert


  • 5.  Re: ViewPort Metadata

    Posted Tue December 08, 2015 03:59 AM