cancel
Showing results for 
Search instead for 
Did you mean: 

BSP Escape Character?

bjorn-henrik_zink
Active Participant
0 Kudos

Hi, I have a

tabStripItem

with a link to a javascript in the title (Please do not comment the design of my application, I can not use onSelect because it triggers a server round trip):


<htmlb:tabStripItem 
 id = "id" 
 title="<a href='javascript:myFunc('myParam')'>
           myLink
        </a>">
</htmlb:tabStripItem>

This does not work due to the " ' characters in the title. Anyone who knows how I can solve the problem?

What is the BSP escape character?

Your help is greatly appreciated.

Thanks in advance.

Message was edited by: Elvez

Accepted Solutions (1)

Accepted Solutions (1)

athavanraja
Active Contributor
0 Kudos

try this

<htmlb:tabStripItem

id = "id"

title="<a href=`javascript:myFunc('myParam')`>

myLink

</a>">

</htmlb:tabStripItem>

Regards

Raja

bjorn-henrik_zink
Active Participant
0 Kudos

Thanks Raja, that did the trick.

I am sorry for the delayed rewarding of points, but as you probably know the sdn reward system has been offline for some time.

Answers (1)

Answers (1)

Former Member
0 Kudos

hi

directly use this its working in my case

<htmlb:tabStripItem id = "id"

title="<a href=javascript:myFunc(myParam)>myLink</a>"></htmlb:tabStripItem>

regards,

Hemendra