Foundations

If you are a web programmer, Agile Toolkit will help you increase your efficiency. You no longer need to work hard on writing HTML, CSS, JavaScript, AJAX. Agile Toolkit will take care of your software appearance in web browser.

Build a better business logic of your software, which defines Models, their behaviour and relations. Agile Toolkit contains a powerful ORM capabilities to enhance security, performance and integration with MySQL database.

Object-Oriented User Interface of Agile Toolkit will let you manipulate objects such as buttons, forms, listers and filters instead of making you write a custom HTML for every single application you develop. If you have a designer, he can create a new HTML/CSS skin for your software, in case you don't, Agile Toolkit comes bundled with HTML/CSS theme based on jQuery UI Themeroller.

Adding Objects in Agile Toolkit

Link $form=$page->add('Form'); $form->addField('line','name'); $form->addField('line','surname'); $form->addButton('Button Does nothing');
// Set custom template $grid=$page->add('MVCGrid', null,null,array('grid_striped')); // Set custom model $grid->setModel('Employee', array('name','salary')); $grid->addPaginator(5); // Set custom JavaScript. Try dragging grid. $grid->js(true)->draggable();
$view=$page->add('View',null,null, array('view/intro_example1')); $view->add('Button',null,'spot1') ->setLabel('World'); $view->add('Button',null,'spot2') ->setLabel('Agile Toolkit');