blob: 3dcf1b459a0bc3bb7fb27d2f8504ce49e1c4c953 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?php
/**
* TActiveCustomValidator class file.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\ActiveControls
*/
namespace Prado\Web\UI\ActiveControls;
/**
* Custom Validator callback client side options class.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package Prado\Web\UI\ActiveControls
* @since 3.1
*/
class TActiveCustomValidatorClientSide extends TCallbackClientSide
{
/**
* @return string javascript code for client-side OnValidate event.
*/
public function getOnValidate()
{
return $this->getOption('OnValidate');
}
/**
* Client-side OnValidate validator event is raise before the validators
* validation functions are called.
* @param string javascript code for client-side OnValidate event.
*/
public function setOnValidate($javascript)
{
$this->setFunction('OnValidate', $javascript);
}
/**
* Client-side OnSuccess event is raise after validation is successfull.
* This will override the default client-side validator behaviour.
* @param string javascript code for client-side OnSuccess event.
*/
public function setOnValidationSuccess($javascript)
{
$this->setFunction('OnValidationSuccess', $javascript);
}
/**
* @return string javascript code for client-side OnSuccess event.
*/
public function getOnValidationSuccess()
{
return $this->getOption('OnValidationSuccess');
}
/**
* Client-side OnError event is raised after validation failure.
* This will override the default client-side validator behaviour.
* @param string javascript code for client-side OnError event.
*/
public function setOnValidationError($javascript)
{
$this->setFunction('OnValidationError', $javascript);
}
/**
* @return string javascript code for client-side OnError event.
*/
public function getOnValidationError()
{
return $this->getOption('OnValidationError');
}
/**
* @param boolean true to revalidate when the control to validate changes value.
*/
public function setObserveChanges($value)
{
$this->setOption('ObserveChanges', TPropertyValue::ensureBoolean($value));
}
/**
* @return boolean true to observe changes.
*/
public function getObserveChanges()
{
$changes = $this->getOption('ObserveChanges');
return ($changes===null) ? true : $changes;
}
}
|