Foren

> symbol changes to >

Dharini Rajendran, geändert vor 11 Jahren.

> symbol changes to >

New Member Beitrag: 1 Beitrittsdatum: 06.11.12 Neueste Beiträge
Hi,

I have this issue in tabbed container component i have in my application. The issue is, i wanna give title to the component as " APR/Lease Contracts> Max Advance Amount Crosstabs ".
It looks fine at first, but after i refresh my page , it changes to " APR/Lease Contracts> Max Advance Amount Crosstabs "

I think this is because ">" is one of the HTML reserved characters.
I looked at portlet.vm & i found this code in it.

<div class="portlet" id="portlet-wrapper-$portlet_id">
<div class="portlet-topper">
<span class="portlet-title">
$theme.iconPortlet() $portlet_title
</span>

<div class="portlet-icons" id="portlet-small-icon-bar_$portlet_id">
#if ($portlet_display.isShowBackIcon())
<a href="$portlet_back_url" class="portlet-icon-back">#language ("return-to-full-page")</a>
#else
$theme.iconOptions()
$theme.iconMinimize()
$theme.iconMaximize()
$theme.iconClose()
#end
</div>

I am stuck here.. I am not sure what change here would resolve the issue.. Can u suggest how this issue can be fixed?