Example #1
0
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 . 'defaultfooter.php');
// Set Form header
$formhead = 'Shipping Details';
$newForm->setFormHeader($formhead, 'ui-icon-mail-closed');
// Set Form Footer
$newForm->setFormFooter("Fields marked with (*) are requiered");
// 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', 'required' => '1', 'style' => 'width:98%;', 'id' => 'newForm_ShipName'));
$newForm->addElement('ShipAddress', 'text', array('label' => 'Address', 'maxlength' => '60', 'size' => '40', 'style' => 'width:98%;', 'id' => 'newForm_ShipAddress'));
$newForm->addElement('ShipCity', 'text', array('label' => 'City', 'maxlength' => '15', 'size' => '20', 'id' => 'newForm_ShipCity'));
$newForm->addElement('ShipPostalCode', 'text', array('label' => 'PostalCode', 'maxlength' => '10', 'size' => '20', 'id' => 'newForm_ShipPostalCode'));
Example #2
0
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 . 'html5pattern.php');
// Set Form header
$formhead = 'Shipping Details';
$newForm->setFormHeader($formhead, 'ui-icon-mail-closed');
// Set Form Footer
$newForm->setFormFooter("* If entered postal code will be checked");
// 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', 'size' => '40', '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'));
$newForm->addElement('ShipPostalCode', 'text', array('label' => 'PostalCode *', 'maxlength' => '10', 'size' => '20', 'pattern' => '^[\\d]{5}(-[\\d]{4})?$', 'placeholder' => 'Enter 5 or 9 digit postal code', 'title' => 'Enter valid postal code', 'id' => 'newForm_ShipPostalCode'));