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/events_actions/ |
Upload File : |
<?php require_once('../qcubed.inc.php'); class ExampleForm extends QForm { protected $txtItem; protected $lblSelected; protected function Form_Create() { // Define the Controls $this->txtItem = new QTextBox($this); $this->txtItem->Name = 'Random Data'; $this->lblSelected = new QLabel($this); $this->lblSelected->Name = 'What You Entered'; $this->lblSelected->Text = '<none>'; // We want to update the label whenever the user types in data // into the textbox. However, in order to prevent too many simultaneous // submits, we'll add a half-second delay on the KeyPress event. $this->txtItem->AddAction(new QKeyPressEvent(500), new QAjaxAction('txtItem_KeyPress')); // Because this is just an example, we'll go ahead and terminate on Enter/ESC to prevent // any inadvertant form posts -- this can obviously be changed to a QAjaxAction to a separate // method/function, etc. $this->txtItem->AddAction(new QEnterKeyEvent(), new QTerminateAction()); $this->txtItem->AddAction(new QEscapeKeyEvent(), new QTerminateAction()); } protected function txtItem_KeyPress() { // Update the Label $this->lblSelected->Text = trim($this->txtItem->Text); } } ExampleForm::Run('ExampleForm'); ?>