vote up 3 vote down star
1

How do I delimit a Javascript databound string parameter in an anchor OnClick event?

  • I have an anchor tag in an ASP.NET Repeater control.
  • The OnClick event of the anchor contains a call to a Javascript function.
  • The Javascript funciton takes a string for it's input parameter.
  • The string parameter is populated with a databound value from the Repeater.

I need the 'double quotes' for the Container.DataItem.
I need the 'single quotes' for the OnClick.

And I still need one more delimiter (triple quotes?) for the input string parameter of the Javascript function call.

Since I can't use 'single quotes' again, how do I ensure the Javascript function knows the input parameter is a string and not an integer?

Without the extra quotes around the input string parameter, the Javascript function thinks I'm passing in an integer.

Cheers in advance for any knowledge you can drop.

The anchor:

<a id="aShowHide" onclick='ToggleDisplay(<%# DataBinder.Eval(Container.DataItem, "JobCode") %>);' >Show/Hide</a>    

and here is the Javascript:

<script language="JavaScript" type="text/javascript">
/* Shows/Hides the Jobs Div */
function ToggleDisplay(jobCode)
{
/* Each div has it's ID set dynamically ('d' plus the JobCode) */
var elem = document.getElementById('d' + jobCode);
if (elem)
{
if (elem.style.display != 'block')
{
elem.style.display = 'block';
elem.style.visibility = 'visible';
}
else
{
elem.style.display = 'none';
elem.style.visibility = 'hidden';
}
}
}
</script>
flag

71% accept rate

10 Answers

vote up 3 vote down check

I had recently similar problem and the only way to solve it was to use plain old HTML codes for single (&#34;) and double quotes (&#39;).

Source code was total mess of course but it worked.

Try

<a id="aShowHide" onclick='ToggleDisplay(&#34;<%# DataBinder.Eval(Container.DataItem, "JobCode") %>&#34;);'>Show/Hide</a>

or

<a id="aShowHide" onclick='ToggleDisplay(&#39;<%# DataBinder.Eval(Container.DataItem, "JobCode") %>&#39;);'>Show/Hide</a>
link|flag
vote up 0 vote down

onclick='javascript:ToggleDisplay("<%# DataBinder.Eval(Container.DataItem, "JobCode")%> "); ' Use like above.

link|flag
vote up 0 vote down

Passing variable to function without single quote or double quote

function hello(id, bu) { alert(id+ bu); }

test

link|flag
vote up 0 vote down

When do you use triple quote? And could you please give me an example?

link|flag
could you give me an example? – nothin Jan 21 '09 at 0:19
I've never used triple quotes anywhere. The point of the question was that I had a situation (described in the original question) where I needed 3 sets of delimiters and I only had 2 at my disposal (single and double quotes). I needed something to act as triple quotes, and HTML codes worked well. – David HAust Jan 27 at 1:54
vote up 1 vote down

Winna!!!

Thanks Lubos.

HTML codes sorted it (and yep, it was messy, but it works).

Solution:

onclick='ToggleDisplay(&#34;<%# DataBinder.Eval(Container.DataItem, "JOB_Code") %>&#34;);'
link|flag
vote up 0 vote down

I just tried using the 'Format String' parameter for the DataBinder.Eval but that didn't work either.

onclick='<%# DataBinder.Eval(Container.DataItem, "JOB_Code", "ToggleDisplay('{0}');" %>'
link|flag
vote up 0 vote down

Try putting the extra text inside the server-side script block and concatenating.

onclick='<%# "ToggleDisplay(""" &  DataBinder.Eval(Container.DataItem, "JobCode") & """);" %>'

Edit: I'm pretty sure you could just use double quotes outside the script block as well.

link|flag
vote up 0 vote down

It should be noted that this is a hypothetical as I have worked around the problem with a kludge of changing the code so it only passes in integers to the Javascript.

But this is a problem I have encountered in a few situations that I'd like to find a solution for.

link|flag
vote up 0 vote down

Hi Grant, Thanks for the quick reply.
I did try adding the empty string on in the Javascript function but it still error'd out.

link|flag
vote up 0 vote down

Without the extra quotes around the input string parameter, the Javascript function thinks I'm passing in an integer.

Can you do some rudimentary string function to force JavaScript into changing it into a string? Like

value = value + ""
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.