setValue() public method

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