Rich Date Input Widget for Symfony 1.1 Forms
I noticed that for some reason the 1.1 forms do not allow for the rich date input that many people like to use, so I just created a new widget that allows for rich date input. See below for the...
View ArticleReceived problem 2 in the chunky parser
I was using cURL in PHP to POST some data to a URL earlier tonight and ran into this problem. With VERBOSE on cURL was erroring with the following error: "Received problem 2 in the chunky parser" After...
View ArticleToggle non-consecutive checkboxes with jQuery UI
You’re all probably familiar with the UI convention of allowing users to select ALL or NONE for a list of checkboxes (like in Gmail). Recently I was working on a project that had a large table full of...
View ArticleSymfony2 – Getting All Errors From a Form in a Controller
Recently I was working on an API call which uses a form to validate the data you are passing in. I ran into the issue of getting all the errors for a form in Symfony2 is not as straight forward as you...
View ArticleSymfony2 and Ordering of Relations and Collection Form Fields
Recently I was working on a project where I kept finding myself ordering a relation over and over by other than something than ID order (ie id= 1,2,3,4,5). For example, I always wanted my relation to...
View ArticleSymfony2 forms without an entity and with a conditional validator
Recently on a project I had a situation where I was using the Symfony2 forms component without an entity. In addition to each field’s constraints, I needed to something similar to symfony 1.4′s...
View Article