Subversion-Projekte lars-tiefland.prado

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

class Home extends TPage
{
        public function onLoad($param)
        {
                parent::onLoad($param);
                $this->Output->dataBind();
        }

        public function textChanged($sender,$param)
        {
                $sender->Text="text changed";
        }

        public function submitText($sender,$param)
        {
                $this->TextBox1->Text="You just entered '".$this->TextBox1->Text."'.";
        }
}

?>