anandkunal / cfc_validator
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
Application.cfm | ||
| |
OnRequestEnd.cfm | ||
| |
README | ||
| |
index.cfm | ||
| |
validator.cfc |
README
INFO: validator_cfc brings ActiveRecord validations to your ColdFusion application. I typically use this for input forms (using this CFC saves me lots of time), but it is very extensible and highly portable. A lot of these methods are just wrappers around ColdFusion built-in's - take a look for yourself. INSTALL: Copy the provided files to a loaded path on your web server. Check out the example on index.cfm. TODO: 1. Change acceptance of (I hate how CF handles checkboxes and their initialization on post back) - I am currently passing the form struct back in 2. Numericality (adjust for locales) 3. Improve error message handling (I think I can find something more elegant) 4. Add more useful validations (email, etc.) that extend/call the base set 5. Improve the documentation/standardize syntax in the CFC file 6. Performance benchmarks (did I mention that this is quick and dirty?) 7. Adjust output only (will involve fixing tons of pound signs) If you find a bug or need support, just shoot me an email at kunal.r.anand@gmail.com

