Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/assets/_core/php/examples/composite/ |
Upload File : |
<?php require_once('../qcubed.inc.php'); require('SampleComposite.class.php'); // Define the Qform with all our Qcontrols class ExamplesForm extends QForm { // Local declarations of our Qcontrols protected $lblMessage; protected $btnButton; // Lets declare our Custom Composite Controls protected $objCounter1; protected $objCounter2; protected $objCounter3; // Initialize our Controls during the Form Creation process protected function Form_Create() { // Define the Label $this->lblMessage = new QLabel($this); $this->lblMessage->Text = ''; $this->lblMessage->HtmlEntities = false; // Define the Button $this->btnButton = new QButton($this); $this->btnButton->Text = 'Add the Values'; // Define our Custom Composite Controls $this->objCounter1 = new SampleComposite($this); $this->objCounter2 = new SampleComposite($this); $this->objCounter3 = new SampleComposite($this); // Lets add some flare for the second one $this->objCounter2->ForeColor = '#780000'; $this->objCounter2->BackColor = '#f6f6f6'; // Lets preset a value for Counter3 $this->objCounter3->Value = 28; // And finally, why not -- lets make 'em use AJAX for their internal events $this->objCounter1->UseAjax = true; $this->objCounter2->UseAjax = true; $this->objCounter3->UseAjax = true; // Add a Click event handler to the main "Add the Values" button // And, just for variety, lets keep it as a server action $this->btnButton->AddAction(new QClickEvent(), new QServerAction('btnButton_Click')); } // The "btnButton_Click" Event handler protected function btnButton_Click($strFormId, $strControlId, $strParameter) { $intTotal = $this->objCounter1->Value + $this->objCounter2->Value + $this->objCounter3->Value; $this->lblMessage->Text = '<strong>The Total</strong>: ' . $intTotal; } } // Run the Form we have defined // The QForm engine will look to intro.tpl.php to use as its HTML template include file ExamplesForm::Run('ExamplesForm'); ?>