fgendorf/phpeasyui

There is no license information available for the latest version (v1.10.18) of this package.

jQuery EasyUI framework helps you build your web pages easily. Homepage: http://jeasyui.com

v1.10.18 2024-01-02 11:49 UTC

README

Class to use Jquery-easyui framework with composer

Getting Started

First you need include the package phpeasyui in you project.

composer require fgendorf/phpeasyui

HOWTO use it

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Project Title</title>
        <?
        $easyui = new PHPEasyUI();
        $easyui->writeHeaders();
        ?>
    </head>
    <body>
        Your project code
    </body>
</html>

Optional functions

Set the theme

$easyui->setTheme("gray");

Possible values:

 * - black
 * - bootstrap
 * - default
 * - gray
 * - material
 * - metro

Use additional Extensions

$extensions = array('datagrid-filter','jquery-easyui-texteditor','datagrid-groupview');
$easyui->useExtensions($extensions);

Extensions list:

 * - columns-ext
 * - datagrid-cellediting
 * - datagrid-filter
 * - datagrid-bufferview
 * - datagrid-detailview
 * - datagrid-groupview
 * - datagrid-scrollview
 * - jquery-easyui-color
 * - jquery-easyui-pivotgrid
 * - jquery-easyui-ribbon
 * - jquery-easyui-texteditor

Author

  • Frederico Gendorf - PHPEasyUI

  • EasyUI Team - jquery-easyui - Copyright (c) 2009-2018 www.jeasyui.com. All rights reserved.

License

PHPEasyUI

  • free for any use

Jquery-easyui