blob: ce8fef2a0635a5cd7ad0db6ed15bcb9763df72b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
class InPlaceWithValidator extends TPage
{
function button_valid($sender, $param){
$this->status->Text = "Status: ". $this->Firstname->Text.".".$this->Lastname->Text;
}
}
|