blob: 89fa9847c12b7fa1a13ccc4df511f1363e020a2e (
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
|
<?php
/**
* TActiveRadioButtonList 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;
use Prado\Web\UI\WebControls\TRadioButton;
class TActiveRadioButtonItem extends TActiveRadioButton
{
/**
* Override client implementation to avoid emitting the javascript
*
* @param THtmlWriter the writer for the rendering purpose
* @param string checkbox id
* @param string onclick js
*/
protected function renderInputTag($writer,$clientID,$onclick)
{
TRadioButton::renderInputTag($writer,$clientID,$onclick);
}
}
|