[AjaxControlToolkit] How to bind extenders to controls on clientside - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T16:52:59Zhttp://stackoverflow.com/feeds/question/127246http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127246/ajaxcontroltoolkit-how-to-bind-extenders-to-controls-on-clientside1[AjaxControlToolkit] How to bind extenders to controls on clientsideSerhat Özgel2008-09-24T13:49:36Z2008-09-26T18:44:58Z
<p>I have some dynamically created inputs which are not server-side controls. I want to relate them to some CalendarExtender and MaskedEditExtender on the clientside. Is there a way to do that?</p>
http://stackoverflow.com/questions/127246/ajaxcontroltoolkit-how-to-bind-extenders-to-controls-on-clientside/127659#1276591Answer by Tom Carter for [AjaxControlToolkit] How to bind extenders to controls on clientsideTom Carter2008-09-24T14:55:30Z2008-09-24T14:55:30Z<p>Yes I think it may be possible here is how:</p>
<p>On the server side set the <code>BehaviourID</code> attribute of the Ajax control to a known value:</p>
<pre><code>_calendarExtender.BehaviorID = "_behaviour_id"
</code></pre>
<p>This allows you then in your javascript to get hold of the underlying CalendarBehaviour object with the <code>$find</code> function :</p>
<pre><code>var calBehaviour = $find('_behaviour_id' );
</code></pre>
<p>You can now call the various object functions such as hide() and show() :</p>
<pre><code>calBehaviour.show();
</code></pre>
<p>You can get hold of the underlying TextBox input field for the CalendarExtender as follows :</p>
<pre><code>var tbElement = calBehaviour._textbox._element;
</code></pre>
<p>I've not tried it but you may thus be able to swap out the original text box for your own client side input control if that's what you want to do or simply manipulate the extender in other ways.</p>