コード例 #1
0
ファイル: formstackdb.php プロジェクト: wtsmith/ODLScripts
/*
$dg -> set_col_fileupload("BeforeAfter2", "/formstackdb/images/", "C:\\inetpub\\wwwroot\\formstackdb\\");
$dg -> set_col_fileupload("BeforeAfter3", "/formstackdb/images/", "C:\\inetpub\\wwwroot\\formstackdb\\");
$dg -> set_col_fileupload("BeforeAfter4", "/formstackdb/images/", "C:\\inetpub\\wwwroot\\formstackdb\\");
*/
// enable integrated search
$dg->enable_search(true);
// enable inline editing
$dg->enable_edit("FORM", "CRUD");
$dg->set_form_dimension(1200, 700);
// set export type
$dg->enable_export('EXCEL');
// $dg -> enable_export('CSV');
// Page Size
$dg->set_pagesize(15);
$dg->enable_resize(true);
// $dg -> enable_autowidth(true);
$dg->enable_autoheight(true);
// $dg -> set_scroll(true);
$dg->enable_kb_nav(true);
// beta.  be careful
// Set grid colors & theme
$dg->set_theme('cobalt');
// $dg -> set_row_color('#BDE7F2', 'lightblue', '#DDE8F5');
// always the last line in the grid section.
$dg->display();
?>

<script type="text/javascript">
    $(function() {
        var grid = jQuery("#formstack");
コード例 #2
0
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Resize by using mouse</title>
</head>
<body> 

<?php 
$dg = new C_DataGrid("select * from products", "productCode", "productcode");
$dg->set_col_title("productCode", "Product Code");
$dg->set_col_title("productName", "Product Name");
$dg->set_col_title("productLine", "Product Line");
// display static Url
$dg->set_col_link("productUrl");
// display dynamic url. e.g.http://www.example.com/?productCode=101&foo=bar
$dg->set_col_dynalink("productCode", "http://www.example.com/", "productCode", '&foo=bar');
// column format
$dg->set_col_currency("buyPrice");
$dg->set_col_format("quantityInStock", "integer", array("thousandsSeparator" => ",", "defaultValue" => "0"));
$dg->set_col_format("MSRP", 'currency', array("prefix" => "\$", "suffix" => '', "thousandsSeparator" => ",", "decimalSeparator" => ".", "decimalPlaces" => '2', "defaultValue" => '0.00'));
// the above line is equivalent to the following helper function
$dg->set_col_currency("MSRP", "\$", '', ",", ".", "2", "0.00");
// display image
$dg->set_col_img("Image");
// enable resize by dragging mouse
$dg->enable_resize(true, 300, 500, true);
$dg->display();
?>

</body>
</html>