diff options
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket220.page')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket220.page | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket220.page b/tests/FunctionalTests/tickets/protected/pages/Ticket220.page new file mode 100644 index 00000000..d5b6e182 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket220.page @@ -0,0 +1,30 @@ +<com:TContent ID="Content"> + <h1>ClientScript Test</h1> + + <com:TClientScript ScriptUrl=<%~ test.js %>> + if(typeof(ClientScriptInfo) == "undefined") + ClientScriptInfo = []; + ClientScriptInfo.push("ok 3?") + </com:TClientScript> + + <com:TClientScript> + if(typeof(ClientScriptInfo) == "undefined") + ClientScriptInfo = []; + ClientScriptInfo.push("ok 2!") + </com:TClientScript> + + <com:TLabel ID="label1" Text="Label 1" /> + <input type="button" id="button1" value="update" /> + + <com:TClientScript UsingPradoScripts="prado"> + Event.observe("button1", "click", function() + { + element = $("<%= $this->label1->ClientID %>"); + if(element) + element.innerHTML = "Label 1: "+inspect(ClientScriptInfo); + else + alert("failed"); + }); + </com:TClientScript> + +</com:TContent>
\ No newline at end of file |