06 Dec 2007, 11:05 AM
|
Karamasoft
Joined on 09-05-2004
Posts 6,820
|
Re: Adding event handlers server side
|
|
|
|
Which kind of event handlers are you trying to add? UltimateSpell has a [ultimateSpellId]_OnLoad() function template on the client-side to handle window onload events after the UltimateSpell control is completely loaded and ready to be reached by the UltimateSpells and UltimateSpellAsYouTypes collections on the client-side. You can use it as follows:
function UltimateSpell1_OnLoad() {/* custom function */}
or
function <%=UltimateSpell1.ClientID%>_OnLoad() {/* custom function */}
You can see more UltimateSpell client-side API at http://www.karamasoft.com/UltimateSpell/ClientAPI.htm
If you let us know more about what exactly you are trying to achieve, we can help you better. Some sample code would help. Thanks.
|
|
|
|
|
|
|
|