From 7369988330bf8796d9cf2564756baf4eb46871ba Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 20 Jan 2015 22:34:11 +0100 Subject: one class per file: framework/Web/UI/ActiveControls --- .../UI/ActiveControls/TActiveCheckBoxListItem.php | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 framework/Web/UI/ActiveControls/TActiveCheckBoxListItem.php (limited to 'framework/Web/UI/ActiveControls/TActiveCheckBoxListItem.php') diff --git a/framework/Web/UI/ActiveControls/TActiveCheckBoxListItem.php b/framework/Web/UI/ActiveControls/TActiveCheckBoxListItem.php new file mode 100644 index 00000000..931b78f2 --- /dev/null +++ b/framework/Web/UI/ActiveControls/TActiveCheckBoxListItem.php @@ -0,0 +1,25 @@ + + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package System.Web.UI.ActiveControls + */ + +class TActiveCheckBoxListItem extends TActiveCheckBox +{ + /** + * 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) + { + TCheckBox::renderInputTag($writer,$clientID,$onclick); + } +} \ No newline at end of file -- cgit v1.2.3