選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

JSComponent.js 275B

1234567891011
  1. com_vaadin_tests_components_javascriptcomponent_JSComponentLoadingIndicator_JSComponent = function()
  2. {
  3. var connector = this;
  4. var e = this.getElement();
  5. e.innerText="click me to ping server";
  6. e.id="js";
  7. e.addEventListener("click", function() {
  8. connector.test();
  9. });
  10. }