Beispiel #1
0
<?php

// Include class
include_once 'jqformconfig.php';
include_once $CODE_PATH . 'jqUtils.php';
include_once $CODE_PATH . 'jqForm.php';
// Create instance
$newForm = new jqForm('newForm', array('method' => 'post', 'id' => 'newForm'));
// Demo Mode creating connection
include_once $CODE_PATH . 'jqGridPdo.php';
$conn = new PDO(DB_DSN, DB_USER, DB_PASSWORD);
$newForm->setConnection($conn);
// Set url
$newForm->setUrl($SERVER_HOST . $SELF_PATH . 'defaulticon.php');
// Set Form header
$formhead = 'Shipping Details';
$newForm->setFormHeader($formhead, 'ui-icon-mail-closed');
// Set parameters
$jqformparams = array();
// Set SQL Command, table, keys
$newForm->table = 'orders';
$newForm->setPrimaryKeys('OrderID');
$newForm->serialKey = true;
// Set Form layout
$newForm->setColumnLayout('twocolumn');
$newForm->setTableStyles('width:580px;', '', '');
// Add elements
$newForm->addElement('OrderID', 'hidden', array('label' => 'OrderID', 'id' => 'newForm_OrderID'));
$newForm->addElement('ShipName', 'text', array('label' => 'Name', 'maxlength' => '40', 'style' => 'width:98%;', 'id' => 'newForm_ShipName'));
$newForm->addElement('ShipAddress', 'text', array('label' => 'Address', 'maxlength' => '60', 'style' => 'width:98%;', 'id' => 'newForm_ShipAddress'));
$newForm->addElement('ShipCity', 'text', array('label' => 'City', 'maxlength' => '15', 'size' => '20', 'id' => 'newForm_ShipCity'));
Beispiel #2
0
<?php

// Include class
include_once 'jqformconfig.php';
include_once $CODE_PATH . 'jqUtils.php';
include_once $CODE_PATH . 'jqForm.php';
// Create instance
$newForm = new jqForm('newForm', array('method' => 'post', 'id' => 'newForm'));
// Demo Mode creating connection
include_once $CODE_PATH . 'jqGridPdo.php';
$conn = new PDO(DB_DSN, DB_USER, DB_PASSWORD);
$newForm->setConnection($conn);
// Set url
$newForm->setUrl($SERVER_HOST . $SELF_PATH . 'fileupload.php');
// Set Form header
$formhead = 'Shipping Details';
$newForm->setFormHeader($formhead, 'ui-icon-mail-closed');
// Set parameters
$jqformparams = array();
// Set SQL Command, table, keys
$newForm->table = 'orders';
$newForm->setPrimaryKeys('OrderID');
$newForm->serialKey = true;
// Set Form layout
$newForm->setColumnLayout('twocolumn');
$newForm->setTableStyles('width:580px;', '', '');
// Add elements
$newForm->addElement('OrderID', 'hidden', array('label' => 'OrderID', 'id' => 'newForm_OrderID'));
$newForm->addElement('ShipName', 'text', array('label' => 'Name', 'maxlength' => '40', 'style' => 'width:98%;', 'id' => 'newForm_ShipName'));
$newForm->addElement('ShipAddress', 'text', array('label' => 'Address', 'maxlength' => '60', 'style' => 'width:98%;', 'id' => 'newForm_ShipAddress'));
$newForm->addElement('ShipCity', 'text', array('label' => 'City', 'maxlength' => '15', 'size' => '20', 'id' => 'newForm_ShipCity'));
Beispiel #3
0
<?php

// Include class
include_once 'jqformconfig.php';
include_once $CODE_PATH . 'jqUtils.php';
include_once $CODE_PATH . 'jqForm.php';
// Create instance
$newForm = new jqForm('newForm', array('enctype' => 'multipart/form-data', 'method' => 'post', 'id' => 'newForm'));
// Demo Mode creating connection
include_once $CODE_PATH . 'jqGridPdo.php';
$conn = new PDO(DB_DSN, DB_USER, DB_PASSWORD);
$newForm->setConnection($conn);
// Set url
$newForm->setUrl($SERVER_HOST . $SELF_PATH . 'html5types.php');
// Set Form header
$formhead = 'Shipping Details';
$newForm->setFormHeader($formhead, 'ui-icon-mail-closed');
// Set parameters
$jqformparams = array();
// Set SQL Command, table, keys
$newForm->table = 'orders';
$newForm->setPrimaryKeys('OrderID');
$newForm->serialKey = true;
// Set Form layout
$newForm->setColumnLayout('twocolumn');
$newForm->setTableStyles('width:580px;', '', '');
// Add elements
$newForm->addElement('OrderID', 'hidden', array('label' => 'OrderID', 'id' => 'newForm_OrderID'));
$newForm->addElement('ShipName', 'text', array('label' => 'Name', 'maxlength' => '40', 'placeholder' => 'Enter Ship name', 'style' => 'width:98%;', 'id' => 'newForm_ShipName'));
$newForm->addElement('ShipAddress', 'text', array('label' => 'Address', 'maxlength' => '60', 'placeholder' => 'Enter Ship Address', 'style' => 'width:98%;', 'id' => 'newForm_ShipAddress'));
$newForm->addElement('ShipCity', 'text', array('label' => 'City', 'maxlength' => '15', 'size' => '20', 'placeholder' => 'Enter Ship City', 'id' => 'newForm_ShipCity'));
Beispiel #4
0
<?php

// Include class
include_once 'jqformconfig.php';
include_once $CODE_PATH . 'jqUtils.php';
include_once $CODE_PATH . 'jqForm.php';
// Create instance
$newForm = new jqForm('newForm', array('method' => 'post', 'id' => 'newForm'));
// Demo Mode creating connection
include_once $CODE_PATH . 'jqGridPdo.php';
$conn = new PDO(DB_DSN, DB_USER, DB_PASSWORD);
$newForm->setConnection($conn);
// Set url
$newForm->setUrl($SERVER_HOST . $SELF_PATH . 'jscode.php');
// Set Form header
$formhead = 'Shipping Details';
$newForm->setFormHeader($formhead, 'ui-icon-mail-closed');
// Set parameters
$jqformparams = array();
// Set SQL Command, table, keys
$newForm->table = 'orders';
$newForm->setPrimaryKeys('OrderID');
$newForm->serialKey = true;
// Set Form layout
$newForm->setColumnLayout('twocolumn');
$newForm->setTableStyles('width:580px;', '', '');
// Add elements
$newForm->addElement('OrderID', 'hidden', array('label' => 'OrderID', 'id' => 'newForm_OrderID'));
$newForm->addElement('ShipName', 'text', array('label' => 'Name', 'maxlength' => '40', 'style' => 'width:98%;', 'id' => 'newForm_ShipName'));
$newForm->addElement('ShipAddress', 'text', array('label' => 'Address', 'maxlength' => '60', 'style' => 'width:98%;', 'id' => 'newForm_ShipAddress'));
$newForm->addElement('ShipCity', 'text', array('label' => 'City', 'maxlength' => '15', 'size' => '20', 'id' => 'newForm_ShipCity'));
Beispiel #5
0
<?php

// Include class
include_once 'jqformconfig.php';
include_once $CODE_PATH . 'jqUtils.php';
include_once $CODE_PATH . 'jqForm.php';
// Create instance
$newForm = new jqForm('newForm', array('method' => 'post', 'id' => 'newForm'));
// Set url
$newForm->setUrl($SERVER_HOST . $SELF_PATH . 'defaultnodb.php');
// Set Form header
// Set Form Footer
// Set parameters
$jqformparams = array();
// Set SQL Command, table, keys
$newForm->serialKey = true;
// Set Form layout
$newForm->setColumnLayout('twocolumn');
$newForm->setTableStyles('width:580px;', '', '');
// Add elements
$newForm->addElement('OrderID', 'hidden', array('label' => 'OrderID', 'id' => 'newForm_OrderID'));
$newForm->addElement('ShipName', 'text', array('label' => 'ShipName', 'maxlength' => '40', 'style' => 'width:98%;', 'id' => 'newForm_ShipName'));
$newForm->addElement('ShipAddress', 'text', array('label' => 'ShipAddress', 'maxlength' => '60', 'style' => 'width:98%;', 'id' => 'newForm_ShipAddress'));
$newForm->addElement('ShipCity', 'text', array('label' => 'ShipCity', 'maxlength' => '15', 'size' => '20', 'id' => 'newForm_ShipCity'));
$newForm->addElement('ShipPostalCode', 'text', array('label' => 'ShipPostalCode', 'maxlength' => '10', 'size' => '20', 'id' => 'newForm_ShipPostalCode'));
$newForm->addElement('ShipCountry', 'text', array('label' => 'ShipCountry', 'maxlength' => '15', 'size' => '20', 'id' => 'newForm_ShipCountry'));
$newForm->addElement('Freight', 'number', array('label' => 'Freight', 'id' => 'newForm_Freight'));
$newForm->addElement('details', 'textarea', array('label' => 'Shipping details', 'rows' => '4', 'style' => 'width:98%;', 'id' => 'newForm_details'));
$newForm->addElement('express', 'checkbox', array('label' => 'Express ', 'id' => 'newForm_express'));
$newForm->addElement('Gender', 'radio', array('label' => 'Gender', 'value' => 'Male', 'text' => 'Male', 'id' => 'newForm_Gender'));
$newForm->addElement('Gender', 'radio', array('value' => 'Female', 'text' => 'Female', 'id' => 'newForm_Gender'));
Beispiel #6
0
<?php

// Include class
include_once 'jqformconfig.php';
include_once $CODE_PATH . 'jqUtils.php';
include_once $CODE_PATH . 'jqForm.php';
// Create instance
$newForm = new jqForm('newForm', array('method' => 'post', 'id' => 'newForm'));
// Demo Mode creating connection
include_once $CODE_PATH . 'jqGridPdo.php';
$conn = new PDO(DB_DSN, DB_USER, DB_PASSWORD);
$newForm->setConnection($conn);
// Set url
$newForm->setUrl($SERVER_HOST . $SELF_PATH . 'sqlsuccess.php');
// Set Form header
$formhead = 'Edit Ship Details';
$newForm->setFormHeader($formhead, 'ui-icon-pencil');
// Set parameters
$Order = jqGridUtils::GetParam('Order', '10254');
$Order = is_numeric($Order) ? (int) $Order : 0;
$jqformparams = array($Order);
// Set SQL Command, table, keys
$newForm->SelectCommand = 'SELECT OrderID, ShipName, ShipAddress, ShipCity, ShipPostalCode, ShipCountry, Freight FROM orders WHERE OrderID = ?';
$newForm->table = 'orders';
$newForm->setPrimaryKeys('OrderID');
$newForm->serialKey = true;
// Set Form layout
$newForm->setColumnLayout('twocolumn');
$newForm->setTableStyles('width:580px;', '', '');
// Add elements
$newForm->addElement('OrderID', 'hidden', array('label' => 'OrderID', 'id' => 'newForm_OrderID'));