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!

How to create non-modal dialog template with a left side

sect55Oct 13 2017 — edited Oct 25 2017

Hi all,

I need a left side for my non-modal page. The modal dialog template does not have a a left side. The current body of a modal dialog template is:

<div class="t-Dialog" role="dialog" aria-label="#TITLE#">

<div class="t-Dialog-header">#REGION_POSITION_01#</div>

<div class="t-Dialog-bodyWrapperOut">

  \<div class="t-Dialog-bodyWrapperIn">\<div class="t-Dialog-body">

  #SUCCESS\_MESSAGE##NOTIFICATION\_MESSAGE##GLOBAL\_NOTIFICATION#

  #BODY#

  \</div>\</div>

</div>

<div class="t-Dialog-footer">#REGION_POSITION_03#</div>

</div>

I attempted to include a left side by copy a DIV from the Left side template:

<div class="t-Dialog" role="dialog" aria-label="#TITLE#">

<div class="t-Dialog-header">#REGION_POSITION_01#</div>

<div class="t-Body-side" id="t_Body_side">

  #REGION\_POSITION\_02#

</div>

<div class="t-Dialog-bodyWrapperOut">

  \<div class="t-Dialog-bodyWrapperIn">\<div class="t-Dialog-body">

  #SUCCESS\_MESSAGE##NOTIFICATION\_MESSAGE##GLOBAL\_NOTIFICATION#

  #BODY#

  \</div>\</div>

</div>

<div class="t-Dialog-footer">#REGION_POSITION_03#</div>

</div>

but it came out like this:

help with left not working.gif

I need the main screen to shift to the right.

Can someone help?

Robert

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 22 2017
Added on Oct 13 2017
2 comments
355 views