html - Make image link to a page using Logo Attributes in Oracle APEX -


i'm running oracle applications express on corporate network (for internal project) , trying make logo have used link home page. logo appears on every page , when user clicks on logo, navigates them home page.

i've tried sorts of different strings,

$('a[href*="home"]') <a href="/"> <a href="f?p=300"> 

etc. etc.

my application lying on application 300, since development version. home url is: f?p=300:1:17112837468263

is asking possible do?

thanks

when define logo on application attributes, shown on pages because has been included in page template(s).
example, on apex (4.2) instance i'm using "theme 24 - cloudy". in "one level tabs - no sidebar" template logo substitution string #logo# used in "definition > body" section:

<header id="uheader">   #region_position_07#   <hgroup>     <a href="#home_link#" id="ulogo">#logo#</a>     <div class="uapexnavbar">       <ul>         #navigation_bar#       </ul>     </div>     #region_position_08#   </hgroup>   <nav>     <ul>       #tab_cells#     </ul>   </nav>   #region_position_04# </header> #region_position_01# #success_message##notification_message##global_notification# <div id="uonecol">   #region_position_02#   #box_body#   #region_position_03# </div> 

header > hgroup > if didn't spot it.

as can see, logo here wrapped in anchor refers homelink #home_link#. homelink can define aswell way. can set homelink through "application properties > user interfaces" , selecting interface use, example "desktop". "home url" field there.

so should is:

  • check theme using
  • check default page template (and other used page templates of course)
  • see #logo# substitution string used , how put out

if isn't in anchor yet can that. if aren't on apex 4.2 (you didn't specify) i'm not sure if can use #home_link#, can't recall. use string substitution syntax (and should, when constructing these types of links): href='f?p=&app_id.:1:&session.'


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -