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/advanced_ajax/ |
Upload File : |
<?php require('../includes/header.inc.php'); ?> <?php $this->RenderBegin(); ?> <div id="instructions"> <h1>Automatic Scrolling</h1> <p>This is just a simple example to show how moveable controls and handles will also automatically perform scrolling tasks on the browser window as you drag a "move handle" towards the edge of the window.</p> <p>There is nothing you need to do to enable this feature. It will just happen automatically.</p> <p>Note that other than the large, oversized table we added below, the form definition code and the HTML include files are more or less the exact same.</p> </div> <div id="demoZone"> <table style="width:<?php _p((ord('J') - ord('A') + 1) * 200); ?>px;"> <?php // Create the cells for our oversized table for ($intRow = 1; $intRow < 10; $intRow++) { _p('<tr>', false); for ($intOrd = ord('A'); $intOrd <= ord('J'); $intOrd++) { printf('<td class="tc">%s%s</td>', chr($intOrd), $intRow); } _p('</tr>', false); } ?> </table> <?php $this->pnlPanel->Render('Cursor=move', 'BackColor=#f6f6f6', 'Width=130', 'Height=50', 'Padding=10', 'BorderWidth=1'); ?> </div> <?php $this->RenderEnd(); ?> <?php require('../includes/footer.inc.php'); ?>