blob: 3bbec73d1f7e3d4fe25e6e944ca68c29b3abd2d3 (
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
|
<?php
/**
* TValidationSummary class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
*/
namespace Prado\Web\UI\WebControls;
use Prado\Web\UI\TClientSideOptions;
/**
* TClientSideValidationSummaryOptions class.
*
* Client-side validation summary events such as {@link setOnHideSummary
* OnHideSummary} and {@link setOnShowSummary OnShowSummary} can be modified
* through the {@link TBaseValidator:: getClientSide ClientSide} property of a
* validation summary.
*
* The <tt>OnHideSummary</tt> event is raise when the validation summary
* requests to hide the messages.
*
* The <tt>OnShowSummary</tt> event is raised when the validation summary
* requests to show the messages.
*
* See the quickstart documentation for further details.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package Prado\Web\UI\WebControls
* @since 3.0
*/
class TClientSideValidationSummaryOptions extends TClientSideOptions
{
/**
* @return string javascript code for client-side OnHideSummary event.
*/
public function getOnHideSummary()
{
return $this->getOption('OnHideSummary');
}
/**
* Client-side OnHideSummary validation summary event is raise when all the
* validators are valid. This will override the default client-side
* validation summary behaviour.
* @param string javascript code for client-side OnHideSummary event.
*/
public function setOnHideSummary($javascript)
{
$this->setFunction('OnHideSummary', $javascript);
}
/**
* Client-side OnShowSummary event is raise when one or more validators are
* not valid. This will override the default client-side validation summary
* behaviour.
* @param string javascript code for client-side OnShowSummary event.
*/
public function setOnShowSummary($javascript)
{
$this->setFunction('OnShowSummary', $javascript);
}
/**
* @return string javascript code for client-side OnShowSummary event.
*/
public function getOnShowSummary()
{
return $this->getOption('OnShowSummary');
}
/**
* Ensure the string is a valid javascript function. The code block
* is enclosed with "function(summary, validators){ }" block.
* @param string javascript code.
* @return string javascript function code.
*/
protected function ensureFunction($javascript)
{
return "function(summary, validators){ {$javascript} }";
}
}
|