2017 © Pedro Peláez
 

library ui

Agile UI - Web Component Framework written in PHP

image

atk4/ui

Agile UI - Web Component Framework written in PHP

  • Friday, July 27, 2018
  • by romaninsh
  • Repository
  • 12 Watchers
  • 159 Stars
  • 5,281 Installations
  • PHP
  • 9 Dependents
  • 1 Suggesters
  • 37 Forks
  • 143 Open issues
  • 100 Versions
  • 12 % Grown

The README.md

Agile UI - Robust and easy to use PHP Framework for Web Apps

Agile UI implement server side rendering engine and over 50 UI generic components for interacting with your data., (*1)

Agile UI is the quickest way for building back-end UI, admin interfaces, data management systems for medium and large projects designed around roles, complex logic, formulas..., (*2)

  • Agile UI relies on abstract data. It could be stored in SQL, NoSQL or in external API.
  • Agile UI adjusts to your data model. If you change your model structure, UI will reflect that.
  • Agile UI offers out-of-the-box components, you don't need front-end development experience.
  • Agile UI is interactive, making it very easy to trigger PHP code on JS events.
  • Agile UI is compact - single file, several lines of code - that's all it takes.
  • Agile UI is extensible - integrates VueJS for custom components and interactive behaviours.

Build CodeCov GitHub release Code Climate, (*3)

Quick-Links: Documentation. Demo-site. ATK Data. Discord community., (*4)

How does Agile Toolkit work?

The goal of Agile Toolkit is to reduce amount of coding to build general purpose web applications. There are three steps involved:, (*5)

  1. Define your "Data Model" through Agile Data Framework and associate with SQL, NoSQL or API.
  2. Initialize UI components, connecting them to Data Model to build User Interface for your application.
  3. If needed - Use Agile API to provide API access for your Mobile/React app or IoT devices.

Agile Data allows you to define models, fields, relations, formulas, aggregates, expressions, user action and access control rules. Both Agile UI and Agile API will follow those rules., (*6)

Integrations and Apps using Agile UI

Agile UI can integrate with frameworks like Laravel or Symfony, has integration with WordPress and there are several high-level projects developed entirely on Agile Toolkit., (*7)

Who uses Agile Toolkit?

Many companies use Agile Toolkit to implement admin interface and in some cases even user-facing interface., (*8)

How does it work?

Install Agile UI with composer require atk4/ui using composer., (*9)

Create index.php file with:, (*10)

<?php

require_once __DIR__ . '/vendor/autoload.php';

$app = new \Atk4\Ui\App();
$app->initLayout([\Atk4\Ui\Layout\Centered::class]);

$form = \Atk4\Ui\Form::addTo($app);
$form->addField('email');
$form->onSubmit(function (Form $form) {
    // implement subscribe here

    return $form->jsSuccess('Subscribed ' . $form->entity->get('email') . ' to newsletter.');
});

// decorate anything
$form->buttonSave->set('Subscribe');
$form->buttonSave->icon = 'mail';

// everything renders automatically

Open PHP in the browser and observe a fully working and good looking form:, (*11)

subscribe, (*12)

ATK UI relies on https://fomantic-ui.com CSS framework to render the form beautifully. It also implements submission callback in a very straightforward way. The demo also demonstrates use of JavaScript action, which can make objects interact with each-other (e.g. Form submit reloads Table)., (*13)

Database Integration with ATK Data

To get most of ATK UI, use ATK Data to describe your business models such as "User" or "Purchase". When you define models, you can start using some more advanced components:, (*14)

Crud is a fully-interactive component that supports pagination, reloading, conditions, data formatting, sorting, quick-search, ordering, custom actions and modals, but at the same time is very easy to use:, (*15)

$app = new \Atk4\Ui\App(['title' => 'hello world']);
$app->initLayout([\Atk4\Ui\Layout\Admin::class]);
$app->db = \Atk4\Data\Persistence::connect('mysql://user:pass@localhost/atk');

\Atk4\Ui\Crud::addTo($app)
    ->setModel(new User($app->db));

ATK Data allows you to set up relations between models:, (*16)

class User extends Model
{
    protected function init(): void
    {
        parent::init();

        $this->addField('name');
        $this->addField('gender', ['enum' => 'female', 'male', 'other']);
        $this->hasMany('Purchases', ['model' => [Purchase::class]]);
    }
}

Conventional Crud works only with a single model, but with add-on you can take advantage this relationship information: https://github.com/atk4/mastercrud, (*17)

use \Atk4\Mastercrud\MasterCrud;

// set up $app here

$masterCrud = MasterCrud::addTo($app)
    ->setModel(new User($app->db), [
        'Purchases' => [],
    ]);

Agile UI can be styled

It's easy to create your own application styling. Here are some example UI:, (*18)

subscribe, (*19)

Actions

As of version 2.0 - Agile Toolkit offers support for User Actions. Those are easy to define in your Data Model declaration:, (*20)

$this->addUserAction('archive', function (Model $entity) {
    $this->set('is_archived', true);
    $this->saveAndUnload();
});

User interface such as Crud or Card will automatically recognize new action and offer user to execute it. You can also control who has permission to execute actions through our ACL system., (*21)

Agile UI Feature highlights

Agile UI has some unique features:, (*22)

Callbacks. Callbacks everywhere!

One of the fundamental features of ATK is Callback - the ability to dynamically generate a route, and then have the JS part of the component invoke it. Thanks to this approach, code can be fluid, simple and readable:, (*23)

$tabs = \Atk4\Ui\Tabs::addTo($app);
\Atk4\Ui\Message::addTo($tabs->addTab('Intro'), ['Other tabs are loaded dynamically!']);

$tabs->addTab('Users', function (\Atk4\Ui\VirtualPage $p) use ($app) {
    // this tab is loaded dynamically, but also contains dynamic component

    \Atk4\Ui\Crud::addTo($p)
        ->setModel(new User($app->db));
});

$tabs->addTab('Settings', function (\Atk4\Ui\VirtualPage $p) use ($app) {
    // second tab contains an AJAX form that stores itself back to DB

    $m = new Settings($app->db);
    $m = $m->load(2);
    \Atk4\Ui\Form::addTo($p)
        ->setModel($m);
});

Wizard

Another component implementation using a very friendly PHP syntax:, (*24)

wizard, (*25)

You get most benefit when you use various ATK UI Components together. Try the following demo: https://ui.atk4.org/demos/interactive/wizard.php. The demo implements:, (*26)

  • Multi-step wizard with ability to navigate forward and backward
  • Form with validation
  • Data memorization in the session
  • Table with column formatter, Messages
  • Real-time output console

With ATK it takes about 50 lines of PHP code only to build it all., (*27)

Getting Started: Build your admin

It's really easy to put together a complex Admin system. Add this code to a new PHP file (tweak it with your database details, table and fields):, (*28)

<?php

$app = new \Atk4\Ui\App('My App');
$app->initLayout([\Atk4\Ui\Layout\Admin::class]);
$app->db = \Atk4\Data\Persistence::connect('mysql://user:pass@localhost/yourdb');

class User extends \Atk4\Data\Model
{
    public $table = 'user';

    protected function init(): void
    {
        parent::init();

        $this->addField('name');
        $this->addField('email', ['required' => true]);
        $this->addField('password');
    }
}

\Atk4\Ui\Crud::addTo($app)
    ->setModel(new User($app->db));

The result is here:, (*29)

, (*30)

Bundled and Planned components

Agile UI comes with many built-in components:, (*31)

All components can be view using the demos application., (*32)

Component Description Introduced
View Template, render tree and various patterns 0.1
Button Button in various variations including icons, labels, styles and tags 0.1
Input Decoration of input fields, integration with buttons. 0.2
JS Assign JS events and abstraction of PHP callbacks. 0.2
Header Simple view for header. 0.3
Menu Horizontal and vertical multi-dimensional menus with icons. 0.4
Form Validation, Interactivity, Feedback, Layouts, Field types. 0.4
Layouts Admin, Centered. 0.4
Table Formatting, Columns, Status, Link, Template, Delete. 1.0
Grid Toolbar, Paginator, Quick-search, Expander, Actions. 1.1
Message Such as "Info", "Error", "Warning" or "Tip" for easy use. 1.1
Modal Modal dialog with dynamically loaded content. 1.1
Reloading Dynamically re-render part of the UI. 1.1
Actions Extended buttons with various interactions 1.1
Crud Create, List, Edit and Delete records (based on Advanced Grid) 1.1
Tabs 4 Responsive: Admin, Centered, Site, Wide. 1.2
Loader Dynamically load itself and contained components inside. 1.3
Modal View Open/Load contained components in a dialog. 1.3
Breadcrumb Push links to pages for navigation. Wizard. 1.4
ProgressBar Interactive display of a multi-step PHP code execution progress 1.4
Console Execute server/shell commands and display progress live 1.4
Items and Lists Flexible and high-performance way to display lists of items. 1.4
Wizard Multi-step, wizard with temporary data storing. 1.4
Actions Visualization of user-defined actions 2.0

Add-ons and integrations

Add-ons:, (*33)

Integrations:, (*34)

All bundled components are free and licensed under MIT license. They are installed together with Agile UI., (*35)

External and 3rd party components may be subject to different licensing terms., (*36)

Documentation and Community

ATK UI makes active use of ATK Core and ATK Data frameworks., (*37)

ATK UI Schematic

agile-ui, (*38)

Credits and License

Agile UI, Data and API are projects we develop in our free time and offer you free of charge under terms of MIT license. If you wish to say thanks to our core team or take part in the project, please contact us through our chat on Discord., (*39)

Discord Community, (*40)

The Versions

27/07 2018

dev-fix/Exception-using-Wizard

dev-fix/Exception-using-Wizard https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

27/07 2018

dev-release/1.5.7

dev-release/1.5.7 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

27/07 2018

1.5.7

1.5.7.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

27/07 2018

dev-develop

dev-develop https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

26/07 2018

dev-fix/Serializer-option

dev-fix/Serializer-option https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

26/07 2018

dev-release/1.5.6

dev-release/1.5.6 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

26/07 2018

1.5.6

1.5.6.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/07 2018

dev-feature/fix-enum-usage-for-boolean-fields

dev-feature/fix-enum-usage-for-boolean-fields https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/07 2018

dev-atk4/ui/feature/tabs-selected-tab

dev-atk4/ui/feature/tabs-selected-tab https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/07 2018

dev-feature/grid-table-customization

dev-feature/grid-table-customization https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

24/07 2018

dev-fix/caughtException-in-tabs

dev-fix/caughtException-in-tabs https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

24/07 2018

dev-release/1.5.5

dev-release/1.5.5 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

24/07 2018

1.5.5

1.5.5.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

24/07 2018

dev-feature/accept-dash-in-input-name

dev-feature/accept-dash-in-input-name https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/07 2018

dev-fix/#522

dev-fix/#522 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

06/07 2018

dev-atk4/ui/feature/Add-Filter-Type-Datetime

dev-atk4/ui/feature/Add-Filter-Type-Datetime https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

05/07 2018

dev-release/1.5.4

dev-release/1.5.4 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

05/07 2018

1.5.4

1.5.4.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

28/06 2018

dev-fix/Modal-in-Modal

dev-fix/Modal-in-Modal https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

19/06 2018

dev-release/1.5.3

dev-release/1.5.3 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

19/06 2018

1.5.3

1.5.3.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

15/06 2018

dev-atk4/ui/fix/#491-AutoComplete-not-initializing-with-proper-text

dev-atk4/ui/fix/#491-AutoComplete-not-initializing-with-proper-text https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

13/06 2018

dev-release/1.5.2

dev-release/1.5.2 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

13/06 2018

1.5.2

1.5.2.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

12/06 2018

dev-feature/jsSearch-Initial-Value

dev-feature/jsSearch-Initial-Value https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

12/06 2018

dev-fix/Autocomplete-not-loading-data

dev-fix/Autocomplete-not-loading-data https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

29/05 2018

dev-fix/#480-Unable-to-find-Exception

dev-fix/#480-Unable-to-find-Exception https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/05 2018

dev-fix/#478-Notify-options

dev-fix/#478-Notify-options https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/05 2018

dev-fix/Dropdown-search-not-showing-input-char

dev-fix/Dropdown-search-not-showing-input-char https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/05 2018

dev-release/1.5.1

dev-release/1.5.1 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/05 2018

1.5.1

1.5.1.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/05 2018

dev-release/1.5.0

dev-release/1.5.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/05 2018

1.5.0

1.5.0.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/05 2018

dev-feature/table-column-filter

dev-feature/table-column-filter https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/05 2018

dev-feature/refactor-totals

dev-feature/refactor-totals https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

08/05 2018

dev-feature/Admin-Layout

dev-feature/Admin-Layout https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

07/05 2018

dev-feature/Admin-Menu

dev-feature/Admin-Menu https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/04 2018

dev-fix/#452-Grid-action-button

dev-fix/#452-Grid-action-button https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

24/04 2018

dev-feature/Conditoinal-Form

dev-feature/Conditoinal-Form https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/04 2018

dev-feature/Grid-Ipp-selector

dev-feature/Grid-Ipp-selector https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

17/04 2018

dev-feature/fix-438

dev-feature/fix-438 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

17/04 2018

dev-feature/Table-Column-Menu

dev-feature/Table-Column-Menu https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

05/04 2018

dev-autocomplete-plus-in-crud

dev-autocomplete-plus-in-crud https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

04/04 2018

dev-release/1.4.5

dev-release/1.4.5 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

04/04 2018

1.4.5

1.4.5.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

29/03 2018

dev-fix/#421-Alert

dev-fix/#421-Alert https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/03 2018

dev-revert-416-feature/add-card

dev-revert-416-feature/add-card https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/03 2018

dev-feature/add-card

dev-feature/add-card https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

08/03 2018

dev-release/1.4.4

dev-release/1.4.4 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

08/03 2018

1.4.4

1.4.4.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

05/03 2018

dev-release/1.4.3

dev-release/1.4.3 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

05/03 2018

1.4.3

1.4.3.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

03/03 2018

dev-feature/various-fixes

dev-feature/various-fixes https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

02/03 2018

dev-feature/jsUrl-Rev

dev-feature/jsUrl-Rev https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

02/03 2018

dev-feature/fix-few-bugs

dev-feature/fix-few-bugs https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

27/02 2018

dev-features/jsUrl

dev-features/jsUrl https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

27/02 2018

dev-atk4/features/jsUrl

dev-atk4/features/jsUrl https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

20/02 2018

dev-release/1.4.2

dev-release/1.4.2 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

20/02 2018

1.4.2

1.4.2.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

10/02 2018

dev-atk4/feature/jsSearch

dev-atk4/feature/jsSearch https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

10/02 2018

dev-feature/jsSearch

dev-feature/jsSearch https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

03/02 2018

dev-release/1.4.1

dev-release/1.4.1 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

03/02 2018

1.4.1

1.4.1.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

30/01 2018

dev-atk4/develop

dev-atk4/develop https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

30/01 2018

dev-feature/add-dbconnect

dev-feature/add-dbconnect https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

27/01 2018

dev-feature/js-package-1.0.1

dev-feature/js-package-1.0.1 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/01 2018

dev-release/1.4.0

dev-release/1.4.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/01 2018

1.4.0

1.4.0.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/01 2018

dev-fix/jsCallback-catch-exception

dev-fix/jsCallback-catch-exception https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/01 2018

dev-feature/js-package

dev-feature/js-package https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/01 2018

dev-feature/upload-field

dev-feature/upload-field https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

15/01 2018

dev-feature/Error-modal(fix#318)

dev-feature/Error-modal(fix#318) https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

12/01 2018

dev-doc-spellcheck

dev-doc-spellcheck https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

22/12 2017

dev-feature/implement-lister

dev-feature/implement-lister https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

03/12 2017

dev-release/1.3.2

dev-release/1.3.2 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

03/12 2017

1.3.2

1.3.2.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

17/11 2017

dev-fix/Callback-getUrl

dev-fix/Callback-getUrl https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

13/11 2017

dev-release/1.3.1

dev-release/1.3.1 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

13/11 2017

1.3.1

1.3.1.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

08/11 2017

dev-release/1.3.0

dev-release/1.3.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

08/11 2017

1.3.0

1.3.0.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

28/10 2017

dev-feature/loader-romans

dev-feature/loader-romans https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

28/10 2017

dev-feature/loader

dev-feature/loader https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

28/10 2017

dev-feature/tree

dev-feature/tree https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/10 2017

dev-feature/autocomplete-field

dev-feature/autocomplete-field https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

18/10 2017

dev-feature/jsNotify

dev-feature/jsNotify https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/10 2017

dev-release/1.2.3

dev-release/1.2.3 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/10 2017

1.2.3

1.2.3.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/10 2017

dev-release/1.2.2

dev-release/1.2.2 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

16/10 2017

1.2.2

1.2.2.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

10/10 2017

dev-release/1.2.1

dev-release/1.2.1 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

10/10 2017

1.2.1

1.2.1.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

10/10 2017

dev-release/1.2.0

dev-release/1.2.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

10/10 2017

1.2.0

1.2.0.0 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

20/09 2017

dev-feature/add-triggered

dev-feature/add-triggered https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

18/09 2017

dev-epic/atk-core-refactor

dev-epic/atk-core-refactor https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

18/09 2017

dev-feature/cleanup-errors

dev-feature/cleanup-errors https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/08 2017

dev-feature/add-missing-docs

dev-feature/add-missing-docs https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

25/08 2017

dev-feature/refactor-columns-fields

dev-feature/refactor-columns-fields https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget

23/07 2017

dev-release/1.2.0-RC1

dev-release/1.2.0-RC1 https://agiletoolkit.org/ui

Agile UI - Web Component Framework written in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

framework component form ui crud widget grid button web render gadget