Logs for

Page 227 of 211,260, showing 20 records out of 4,225,198 total, starting on record 4,521, ending on 4,540

# At Username Text
# Aug 8th 2008, 03:28 alkemann defaults for all models? as in all models ahve the same field and u want it to have a default start value in the edit form? or in the DB if not supplied?
# Aug 8th 2008, 03:30 pgcd alkemann: in the edit form (it's a validity date range kind of field)
# Aug 8th 2008, 03:30 alkemann put it in the helper as a start value
# Aug 8th 2008, 03:31 pgcd alkemann: in app_helper, you mean?
# Aug 8th 2008, 03:32 alkemann in the helper u make or use
# Aug 8th 2008, 03:33 alkemann or maybe even in the view where ur using the helper
# Aug 8th 2008, 03:33 pgcd alkemann: ok, i see
# Aug 8th 2008, 03:40 pgcd alkemann: if i try something like this: class ExtendedFormHelper extends FormHelper, i get a fatal error (Class 'FormHelper' not found)
# Aug 8th 2008, 03:43 pgcd alkemann: ok, i found that i have to use FormHelper as well
# Aug 8th 2008, 03:43 alkemann right
# Aug 8th 2008, 03:47 phunkk anybody with an opinion concerning simple-form-authentication vs. cake's Auth component?
# Aug 8th 2008, 03:48 phunkk (http://bakery.cakephp.org/articles/view/simple-form-authentication-in-1-2-x-x)
# Aug 8th 2008, 03:54 phunkk guess not
# Aug 8th 2008, 04:00 stevieboy phrunkk: i used the auth-component and it's very nice
# Aug 8th 2008, 04:00 stevieboy thats all i can say
# Aug 8th 2008, 04:01 phunkk ok (: my experience with the auth component was a bit disencouraging
# Aug 8th 2008, 04:01 phunkk so i gave the tutorial a try and that works like a charm
# Aug 8th 2008, 04:06 daschl hey guys, is it possible to find out the current method in the controller? when i use $this->params i get the ajax method 'cause i need this in an ajax contect.. i need the method in /controller/method
# Aug 8th 2008, 04:09 stevieboy daschl: just debug($this) and look for the value. i guess action is written somewhere
# Aug 8th 2008, 04:09 daschl stevieboy, k thanks :D