setValue() public method

Client-side Value property can only be updated after the OnLoad stage.
public setValue ( $value )
Exemplo n.º 1
0
 public function testSetValue()
 {
     $field = new TActiveHiddenField();
     $field->setValue('Test');
     $this->assertEquals('Test', $field->getValue());
 }