diff options
Diffstat (limited to 'framework/Web/UI/ActiveControls/TActiveRadioButtonItem.php')
| -rw-r--r-- | framework/Web/UI/ActiveControls/TActiveRadioButtonItem.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveRadioButtonItem.php b/framework/Web/UI/ActiveControls/TActiveRadioButtonItem.php new file mode 100644 index 00000000..55c5046e --- /dev/null +++ b/framework/Web/UI/ActiveControls/TActiveRadioButtonItem.php @@ -0,0 +1,26 @@ +<?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 System.Web.UI.ActiveControls + */ + + +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); + } +}
\ No newline at end of file |
