diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-06-14 22:57:28 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-06-14 22:57:28 +0300 |
commit | 51ce4a2535146a3b8861bd02f655c18d9a397522 (patch) | |
tree | 2c4421863c5255b1595111c6e968b0a84f1c9f4b /WebContent/statictestfiles/jsconnector.js | |
parent | 72c0f66e2aa588acbb517e6d9b482c7a75faf9f1 (diff) | |
download | vaadin-framework-51ce4a2535146a3b8861bd02f655c18d9a397522.tar.gz vaadin-framework-51ce4a2535146a3b8861bd02f655c18d9a397522.zip |
Implement js rpc proxy objects and wildcard rpc support (#8888)
Diffstat (limited to 'WebContent/statictestfiles/jsconnector.js')
-rw-r--r-- | WebContent/statictestfiles/jsconnector.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/statictestfiles/jsconnector.js b/WebContent/statictestfiles/jsconnector.js index e08c748aa6..d7f697dbf5 100644 --- a/WebContent/statictestfiles/jsconnector.js +++ b/WebContent/statictestfiles/jsconnector.js @@ -4,7 +4,7 @@ window.com_vaadin_tests_components_javascriptcomponent_BasicJavaScriptComponent_ var rootElement = connector.getWidgetElement(); rootElement.innerHTML = 'Hello world!'; rootElement.onclick = function() { - connector.getRpcProxyFunction("com.vaadin.tests.components.javascriptcomponent.BasicJavaScriptComponent$ExampleClickRpc", "onClick")("message"); + connector.getRpcProxy().onClick("message"); connector.onclick("another message"); } connector.onStateChange = function() { |