summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TRadioButtonItem.php
blob: 5c434b19488664b9ad4a9b293649300978ad0370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * TRadioButtonList class file
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2005-2014 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @package Prado\Web\UI\WebControls
 */

namespace Prado\Web\UI\WebControls;

class TRadioButtonItem extends TRadioButton {
	/**
	 * Override client implementation to avoid emitting the javascript
	 */
	protected function renderClientControlScript($writer)
	{
	}
}