A workaround is to put something like this on the page
(inside the t:page).

  <t:script onload="initOnChange();">
    function initOnChange() {
      var x = document.getElementById("page:username");
      x.onchange = onChangeFunction;
    }
    function onChangeFunction() {
      alert('username changed');
    }
  </t:script>

Udo

Dani Kenan wrote:

Hi,

I would like to handle onchage or onclick events in the client side.
It seems missing from the Tobago tld.
Is there away around this limitation? Is there a chance to get a fix for that?

TIA

Dani


Reply via email to