I was using something like this before Dojo 1.8, but now I get a "node not found" error :
<form dojoType="dijit.form.Form">
Search :
<input type="text" dojoType="dijit.form.TextBox" name="searcht" id="searcht">
<script type="dojo/connect" event="onSubmit" args="evt">
my_function();
dojo.stopEvent(evt);
</script>
</form>
I noticed that if I remove the search text box the code is working. How can I rewrite the above to work with 1.8, and also please be so kind to point me in the right direction to read about this and understand why this is happening. I should also note that I'm using the same type of code for contentpanes, and the code works fine there.
Thanks, Noru