diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-23 14:52:22 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-23 14:52:22 +0100 |
commit | 5909ef5a99fd98dbc1b25fcb4640c03fdef4cb53 (patch) | |
tree | a709088dc31fe9bdb3c6ac55d8b25a27f05e438c /tests | |
parent | a6fe1553fa7870facf5cff524fd99cf81518d1e4 (diff) |
Fixed dynamic creation of js events
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page index 7ab4bab9..13133a32 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.page @@ -10,13 +10,11 @@ Click Me! </div> <script type="text/javascript"> - Event.OnLoad(function() - { - Event.observe($("div1"), "click", function() - { - Prado.Callback("<%= $this->callback1->UniqueID %>") - }) - }) + jQuery( document ).ready(function() { + jQuery("#div1").click(function() { + Prado.Callback("<%= $this->callback1->UniqueID %>"); + }); + }); </script> <com:TJavascriptLogger /> </com:TForm>
\ No newline at end of file |