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/dynamic/ |
Upload File : |
<?php require('../includes/header.inc.php'); ?> <?php $this->RenderBegin(); ?> <div id="instructions"> <h1>Moving Controls Between Panels</h1> <p>With the concept of a <strong>QLabel</strong> or <strong>QPanel</strong> being able to have an arbitrary number of child controls, we use this example to show how you can dynamically change a control's parent, to essentially "move" a control from one panel to the next.</p> <p>The example below has two <strong>QPanel</strong> controls, as well as ten <strong>QTextBox</strong> controls who's parents are one of the panels. The buttons have <strong>QAjaxActions</strong> which will move the textboxes back and forth between the panels, or remove the textbox altogether.</p> <p>Again, note that we are not hard coding a <strong>QTextBox->Render</strong> <i>anywhere</i> in our code. We are simply using the concept of <strong>ParentControls</strong> and using the two <strong>QBlockControl</strong> controls' <strong>AutoRenderChildren</strong> functionality to dynamically render the textboxes in the appropriate places.</p> <p>Finally, notice that while we are doing this using AJAX-based actions, you can just as easily use Server-based actions as well.</p> </div> <div id="demoZone"> <table cellspacing="0" cellpadding="5" border="0"> <tr> <td valign="top"><?php $this->pnlLeft->Render(); ?></td> <td valign="top"><?php $this->pnlRight->Render(); ?></td> </tr> <tr> <td colspan="2" align="center"> <?php $this->btnMoveLeft->Render(); ?> <?php $this->btnMoveRight->Render(); ?><br/> <?php $this->btnDeleteLeft->Render(); ?> </td> </tr> </table> </div> <?php $this->RenderEnd(); ?> <?php require('../includes/footer.inc.php'); ?>