Forms are the foundation of interactive web and what we call Web 2.0. In this article I will walk through the possible problems web developers encounter when creating web forms and solutions to those problems.
This article will be useful to people who are starting web development or who are experienced at it.
This article refers to Form implementation in Agile Toolkit. For documentation and demonstrations of forms in Agile Toolkit see http://agiletoolkit.org/doc/form
Read more
Tags:
ajax,
file upload,
form,
php5,
security,
UI
For web developers it is always a big choice, whether to use a regular links or load data through AJAX. Regular links are boring and old, but AJAX is not supported by Google and other crawlers.
The solution is to have a regular link pointing to the page, but also add JavaScript on that link which will cancel default action and will load page dynamically.
This is exactly how we decided to implement 3 pages on www.agiletoolkit.org:
- download page (integrates with twitter and starts download automatically)
- newsletter page (integrates with Campaign Monitor)
- contact page (integrates with Database and Email Sender)
Read more
Tags:
ajax
Today – any desktop software is able to re-draw itself from a callback by operating system. However many Web Frameworks today do not keep track of objects and cannot selectively produce pieces of HTML code.
I believe that ability to have control over objects on HTML pages is very essential to have in the Framework. Here is why:
Read more
Tags:
add-ons,
ajax,
form,
grid
There are number of stability improvements and code clean ups happening in trunk. We are getting ready to release minor update for our stable branch 3.9. Some of the features:
- Ajax Form inline errors are back and working properly
- Grids are going to be married with atk4_grid and will support row reloading and other things
- Grid Inline editing is back!
- Improved compatibility with older projects
- … and more.
Tell me what would you like to see in upcoming release? Oh and meanwhile, we did our first public demonstration of Agile Toolkit 4:
http://files.agiletech.ie/atk-present.mov
We plan to wind-up our promotion as we are nearing closer to 4.0 release.
Tags:
ajax,
form,
grid,
news
Hi All.
I wanted to let you all know, that I have just completed a nice piece. It is a animated demo on JavaScript which uses AJAX and Agile Toolkit.
http://www.agiletech.ie/demo/
Enjoy. I might post sources later on. It took me 4 hours to develop that demo from scratch.
Tags:
ajax,
javascript,
tips
I receive a lot of questions about how to reload page with Agile Toolkit in certain conditions. There are many approaches and I wanted to write a blog post just about that.
Read more
Tags:
ajax,
javascript,
jquery ui,
page
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
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