How do you pass parameters to called function using ASP.Net Ajax $addHandler - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T14:18:21Zhttp://stackoverflow.com/feeds/question/141207http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/141207/how-do-you-pass-parameters-to-called-function-using-asp-net-ajax-addhandler0How do you pass parameters to called function using ASP.Net Ajax $addHandler rams2008-09-26T18:44:43Z2008-09-26T18:58:57Z
<p>I am trying to use the $addHandler function to add a handler to a text box's click event </p>
<pre><code>var o=$get('myTextBox');
var f = Type.parse('funcWithArgs');
$addHandler(o, 'click', f);
</code></pre>
<p>However I need to pass parameters to the called function. How do you do that?</p>
<p>TIA</p>
http://stackoverflow.com/questions/141207/how-do-you-pass-parameters-to-called-function-using-asp-net-ajax-addhandler/141216#1412163Answer by Jason Bunting for How do you pass parameters to called function using ASP.Net Ajax $addHandler Jason Bunting2008-09-26T18:46:37Z2008-09-26T18:58:57Z<p>Wrap your function with an anonymous function (aka lambda):</p>
<pre><code>$addHandler(o, 'click', function() { f(my, arguments, go, here); });
</code></pre>
<p><hr /></p>
<h3>Alternative solution:</h3>
<p>If you had a function that created partials, you could do that as well - I use a toolkit that provides for that, and this is how it would be done:</p>
<pre><code>$addHandler(o, 'click', partial(f, my, arguments, go, here));
</code></pre>
<p>I don't know (and actually doubt) that Microsoft's framework provides for that, but you could look into writing your own <code>partial</code> function.</p>