Alternative to PHP QuickForm? -


i'm playing around html_quickform generating forms in php. seems kind of limited in it's hard insert own javascript or customizing display , grouping of elements.

are there alternatives quickform might provide more flexibility?

if find hard insert javascript form elements, consider using javascript framework such prototype or jquery. there, can centralize task of injecting event handling form controls.

by that, mean won't need insert event handlers html form code. instead, register events somewhere else. example, in prototype able write this:

$('myformcontrol').observe('click', myclickfunction) 

also have @ answers another question.

/edit: of course, can insert custom attributes , event handlers form elements using html_quickform. however, above way superior.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -