I came over this old question on StackOverflow: “Which PHP Framework will get me to a usable UI the fastest?” I couldn’t help but wonder, why people are not aware of all those other PHP UI frameworks? There are few, right? If you google for “php ui” you can find them. Those are more generally referred to as UI toolkits. But why those toolkits are not known in the mainstream?
Why there is a gap between UI toolkits and mainstream frameworks? If UI is Yin and backend is Yang – why can’t they co-exist?
Here is what I think..
Read more
Tags:
grid,
javascript,
jquery,
support,
UI
I stumbled upon a interesting jQuery plugin called Validity. Syntax seemed straightforward so I decided to see how long it takes to integrate it into Agile Toolkit.
http://validity.thatscaptaintoyou.com/
See demo here: http://demo.atk4.com/validity.html
Read more
Tags:
jquery
This post continues comparison of Agile Toolkit and Symfony 2.0. This post is based on features described in Quick tour – page 2
Read more
Tags:
ajax,
compare,
javascript,
jquery,
jquery ui,
mvc,
url
This post continues to explain how to use JavaScript (JS) most efficiently in Agile Toolkit. Read first part first.
Read more
Tags:
javascript,
jquery,
plugin
Half year ago we have introduced jQuery / Chain into AModules3 (former name for Agile Toolkit). It allows us to clean up a lot of older code and at the same time give developers a way to do many new things in a flexible way.
Read more
Tags:
ajax,
javascript,
jquery,
jquery ui
The other day I have added this method for skai, but it’s actually a very curious one.
Agile Toolkit 4 uses atk4_loader widget for AJAX requests. Syntax is very similar to jQuery:
- jQuery: $(‘#div’).load(‘url’);
- atk4: $(‘#div’).atk4_load(‘url’);
Read more
Tags:
ajax,
jquery
If you are getting this problem, this is because button() is a part of jQuery UI 1.8. By default 1.7 is still used. Since 1.8 stable is being released we will switch over shortly, but for now here is the fix. Put this into your config.php to manually change version of jquery / jquery ui:
$config['js']['versions']['jquery']='1.4.2.min';
$config['js']['versions']['jqueryui']='1.8.custom.min';
Tags:
jquery,
jquery ui